1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Decrease number of SPSCQueue items to 8K.

This matches the query limit set on the server.
This commit is contained in:
Bartosz Taudul
2021-11-14 18:51:11 +01:00
parent a203eb5aef
commit 9055a31156
+1 -1
View File
@@ -1300,7 +1300,7 @@ Profiler::Profiler()
, m_fiQueue( 16 )
, m_fiDequeue( 16 )
#endif
, m_symbolQueue( 64*1024 )
, m_symbolQueue( 8*1024 )
, m_frameCount( 0 )
, m_isConnected( false )
#ifdef TRACY_ON_DEMAND