From 4984fa2a2eb465183253023174556c0831936f18 Mon Sep 17 00:00:00 2001 From: Irlan Date: Wed, 27 Mar 2019 10:14:53 -0300 Subject: [PATCH] grow event buffer --- examples/testbed/framework/profiler.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/testbed/framework/profiler.h b/examples/testbed/framework/profiler.h index 5428ee1..38165cd 100644 --- a/examples/testbed/framework/profiler.h +++ b/examples/testbed/framework/profiler.h @@ -25,8 +25,8 @@ #include // This defines the maximum number of profiler events that can be -// queued per frame until the function Profiler::Flush is called. -#define MAX_PROFILER_EVENTS 256 +// queued per frame until the function Profiler::End is called. +#define MAX_PROFILER_EVENTS 2048 class ProfilerListener;