diff options
author | Dave Parks <davep@lindenlab.com> | 2024-06-05 15:14:13 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-05 15:14:13 -0500 |
commit | 24586f810eb7ef8048a55687333d51c53aa2bed8 (patch) | |
tree | c1213aae9efb9a5b6afd89ab6ce6ffe3dd02c277 /indra/llcommon | |
parent | f568e6036bfa133ee8496a751f3269ec772fe5d3 (diff) |
#1527 Improve performance on Apple silicon (#1632)
Diffstat (limited to 'indra/llcommon')
-rw-r--r-- | indra/llcommon/llprofiler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llprofiler.h b/indra/llcommon/llprofiler.h index af5e5777bf..722d9afca2 100644 --- a/indra/llcommon/llprofiler.h +++ b/indra/llcommon/llprofiler.h @@ -162,7 +162,7 @@ extern thread_local bool gProfilerEnabled; #define LL_LABEL_OBJECT_GL(type, name, length, label) -#if LL_PROFILER_CONFIGURATION > 1 +#if !LL_DARWIN && LL_PROFILER_CONFIGURATION > 1 #define LL_PROFILE_ALLOC(ptr, size) TracyAlloc(ptr, size) #define LL_PROFILE_FREE(ptr) TracyFree(ptr) #else |