diff options
author | Rye <rye@lindenlab.com> | 2024-11-06 04:06:29 -0500 |
---|---|---|
committer | Rye <rye@lindenlab.com> | 2024-11-06 04:49:14 -0500 |
commit | d9ee26fcbabbb5fe94006b8d31d4bfb988f7b53e (patch) | |
tree | 6aafff88b75e478ca62e5ad3705377be11c8a797 /indra/llwindow | |
parent | c092782cf76f90d42aa21fed318126f3f094d793 (diff) |
Improve Tracy OpenGL integration
Fix memory profiling when gpu profiling enabled
Fix disabling renderdoc support
Diffstat (limited to 'indra/llwindow')
-rw-r--r-- | indra/llwindow/llwindowwin32.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/indra/llwindow/llwindowwin32.cpp b/indra/llwindow/llwindowwin32.cpp index f349c4aea8..f926d106be 100644 --- a/indra/llwindow/llwindowwin32.cpp +++ b/indra/llwindow/llwindowwin32.cpp @@ -1661,6 +1661,11 @@ const S32 max_format = (S32)num_formats - 1; return false; } + // Setup Tracy gpu context + { + LL_PROFILER_GPU_CONTEXT; + } + // Disable vertical sync for swap toggleVSync(enable_vsync); @@ -1692,8 +1697,6 @@ const S32 max_format = (S32)num_formats - 1; swapBuffers(); } - LL_PROFILER_GPU_CONTEXT; - return true; } |