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-13 01:29:09 +0300
committerBartosz Taudul <wolf.pld@gmail.com>2019-08-13 03:35:32 +0300
commit8c494eabbf6eb2cb2604963b625e9234e25a8c67 (patch)
treec288329007edf23afbc3761a4337f2b553a4268e /server/TracyView.cpp
parent0b03fed61c372726aeda3855969121d487c23e53 (diff)
Display number of context switch regions.
Diffstat (limited to 'server/TracyView.cpp')
-rw-r--r--server/TracyView.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/server/TracyView.cpp b/server/TracyView.cpp
index 3348ac7a..3b083583 100644
--- a/server/TracyView.cpp
+++ b/server/TracyView.cpp
@@ -8602,6 +8602,7 @@ void View::DrawInfo()
TextFocused( "Call stacks:", RealToString( m_worker.GetCallstackPayloadCount(), true ) );
TextFocused( "Call stack frames:", RealToString( m_worker.GetCallstackFrameCount(), true ) );
TextFocused( "Frame images:", RealToString( ficnt, true ) );
+ TextFocused( "Context switch regions:", RealToString( m_worker.GetContextSwitchCount(), true ) );
ImGui::TreePop();
}