diff options
Diffstat (limited to 'indra/cmake/Tracy.cmake')
| -rw-r--r-- | indra/cmake/Tracy.cmake | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/cmake/Tracy.cmake b/indra/cmake/Tracy.cmake index a7eac2711f..cb09337d15 100644 --- a/indra/cmake/Tracy.cmake +++ b/indra/cmake/Tracy.cmake @@ -15,6 +15,7 @@ endif()  if (USE_TRACY)    option(USE_TRACY_ON_DEMAND "Use on-demand Tracy profiling." ON)    option(USE_TRACY_LOCAL_ONLY "Disallow remote Tracy profiling." OFF) +  option(USE_TRACY_GPU "Use Tracy GPU profiling" OFF)    use_system_binary(tracy)    use_prebuilt_binary(tracy) @@ -31,9 +32,8 @@ if (USE_TRACY)      target_compile_definitions(ll::tracy INTERFACE -DTRACY_NO_BROADCAST=1 -DTRACY_ONLY_LOCALHOST=1)    endif () -  # GHA runners don't always provide invariant TSC support, but always build with LL_TESTS enabled -  if (DARWIN AND LL_TESTS) -    target_compile_definitions(ll::tracy INTERFACE -DTRACY_TIMER_FALLBACK=1) +  if (USE_TRACY_GPU AND NOT DARWIN) # Tracy OpenGL mode is incompatible with macOS/iOS +    target_compile_definitions(ll::tracy INTERFACE -DLL_PROFILER_ENABLE_TRACY_OPENGL=1)    endif ()    # See: indra/llcommon/llprofiler.h  | 
