From 4708f819b9ff49709f0cf315113ddae73e38c21a Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Wed, 22 Nov 2017 14:01:44 +0100 Subject: [PATCH] Bump number of query slots to 64K. --- TracyOpenGL.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TracyOpenGL.hpp b/TracyOpenGL.hpp index 6ca03d9b..7485c5f2 100644 --- a/TracyOpenGL.hpp +++ b/TracyOpenGL.hpp @@ -44,7 +44,7 @@ class GpuCtx { friend class GpuCtxScope; - enum { QueryCount = 1024 }; + enum { QueryCount = 64 * 1024 }; public: GpuCtx()