1
0
mirror of https://github.com/wolfpld/tracy synced 2025-04-29 04:23:51 +00:00

Explicitly describe target frame size.

This commit is contained in:
Bartosz Taudul 2017-09-12 00:49:38 +02:00
parent 30ceac359d
commit aa10adcc9c

View File

@ -68,7 +68,8 @@ Profiler* Profiler::Instance()
void Profiler::Worker()
{
enum { BulkSize = 64000 / QueueItemSize };
enum { TargetFrameSize = 64000 };
enum { BulkSize = TargetFrameSize / QueueItemSize };
moodycamel::ConsumerToken token( m_queue );
ListenSocket listen;