From 6065d25335f6b8d6116b45061cdab8f9c2e61807 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Fri, 1 Mar 2019 01:41:10 +0100 Subject: [PATCH] Extend list of tracy callstack frames. --- server/TracyView.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 16797e0d..a2dfe1b1 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -44,9 +44,14 @@ namespace tracy static const char* s_tracyStackFrames[] = { "tracy::Callstack", + "tracy::GpuCtxScope::{ctor}", "tracy::Profiler::SendCallstack", - "tracy::ScopedZone::{ctor}", "tracy::Profiler::SendCallstack(int, unsigned long)", + "tracy::Profiler::MemAllocCallstack", + "tracy::Profiler::MemAllocCallstack(void const*, unsigned long, int)", + "tracy::Profiler::MemFreeCallstack", + "tracy::Profiler::MemFreeCallstack(void const*, int)", + "tracy::ScopedZone::{ctor}", "tracy::ScopedZone::ScopedZone(tracy::SourceLocationData const*, int, bool)", nullptr };