From 452e5c5c831eb67f665d26d6da095e1ef843b416 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 10 Sep 2017 20:40:28 +0200 Subject: [PATCH] Increase bulk size to 1024. --- client/TracyProfiler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/TracyProfiler.cpp b/client/TracyProfiler.cpp index 4bf3882f..67a24a46 100755 --- a/client/TracyProfiler.cpp +++ b/client/TracyProfiler.cpp @@ -61,7 +61,7 @@ void Profiler::ZoneEnd( QueueZoneEnd&& data ) void Profiler::Worker() { - enum { BulkSize = 32 }; + enum { BulkSize = 1024 }; moodycamel::ConsumerToken token( m_queue ); for(;;)