From 821d43c6b580d1d8676dcd36cd20e08ca4fc0230 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Thu, 13 Aug 2026 17:40:45 +0200 Subject: [PATCH] Send string for SectionSetup during on-demand deferred messages replay. --- public/client/TracyProfiler.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/client/TracyProfiler.cpp b/public/client/TracyProfiler.cpp index e665eaae..44841ab4 100644 --- a/public/client/TracyProfiler.cpp +++ b/public/client/TracyProfiler.cpp @@ -2079,6 +2079,11 @@ void Profiler::Worker() size = MemRead( &item.gpuContextNameFat.size ); SendSingleString( (const char*)ptr, size ); break; + case QueueType::SectionSetup: + ptr = MemRead( &item.sectionSetupFat.text ); + size = MemRead( &item.sectionSetupFat.size ); + SendSingleString( (const char*)ptr, size ); + break; default: break; }