From e155702e0a078a3eb4818115ccab43f5bd9987bb Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Wed, 13 Mar 2024 19:10:13 +0100 Subject: [PATCH] Display count of aggregate inline functions. --- server/TracyView_Samples.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/server/TracyView_Samples.cpp b/server/TracyView_Samples.cpp index 6505aa27..879844b3 100644 --- a/server/TracyView_Samples.cpp +++ b/server/TracyView_Samples.cpp @@ -579,6 +579,11 @@ void View::DrawSamplesStatistics( Vector& data, int64_t timeRange, Accu if( clicked ) ShowSampleParents( iv.symAddr, false ); ImGui::PopID(); } + if( iv.count > 1 ) + { + ImGui::SameLine(); + ImGui::TextDisabled( "(\xc3\x97%s)", RealToString( iv.count ) ); + } ImGui::TableNextColumn(); float indentVal = 0.f; if( m_statBuzzAnim.Match( iv.symAddr ) )