summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorRye <rye@lindenlab.com>2024-11-05 22:57:25 -0500
committerRye <rye@lindenlab.com>2024-11-05 22:57:25 -0500
commitc092782cf76f90d42aa21fed318126f3f094d793 (patch)
treeb3e8e03ec64990111488dc4ea9b6f18f1dd61064 /indra/newview
parent65c80ed68615e4fd06b0c68f77ae6acca41ed584 (diff)
Fix Tracy memory profiling on macos
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llappviewermacosx.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/llappviewermacosx.cpp b/indra/newview/llappviewermacosx.cpp
index 4162c0479a..f497a3cdf3 100644
--- a/indra/newview/llappviewermacosx.cpp
+++ b/indra/newview/llappviewermacosx.cpp
@@ -231,6 +231,11 @@ void infos(const std::string& message)
int main( int argc, char **argv )
{
+ // Call Tracy first thing to have it allocate memory
+ // https://github.com/wolfpld/tracy/issues/196
+ LL_PROFILER_FRAME_END;
+ LL_PROFILER_SET_THREAD_NAME("App");
+
// Store off the command line args for use later.
gArgC = argc;
gArgV = argv;