From 0b12db5ee6bbce3609f8384e6f154a679b713e11 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Wed, 14 Aug 2019 17:36:19 +0200 Subject: [PATCH] Display number of thread running state regions. --- server/TracyView.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 52f8ad5e..77cedf78 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -2132,6 +2132,10 @@ void View::DrawZones() { TextFocused( "Locks:", RealToString( lockCnt, true ) ); } + if( ctx ) + { + TextFocused( "Running state regions:", RealToString( ctx->v.size(), true ) ); + } ImGui::EndTooltip(); if( ImGui::IsMouseClicked( 0 ) )