Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Taudul <wolf.pld@gmail.com>2019-08-14 18:36:19 +0300
committerBartosz Taudul <wolf.pld@gmail.com>2019-08-14 18:36:19 +0300
commit0b12db5ee6bbce3609f8384e6f154a679b713e11 (patch)
treed60f2fa1466cbb8678ebbdf1a454c6c1284cd671 /server/TracyView.cpp
parentfadac0b4333b630346038cbcc3020305b16425bc (diff)
Display number of thread running state regions.
Diffstat (limited to 'server/TracyView.cpp')
-rw-r--r--server/TracyView.cpp4
1 files changed, 4 insertions, 0 deletions
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 ) )