1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Display number of context switch regions.

This commit is contained in:
Bartosz Taudul
2019-08-13 00:29:09 +02:00
parent 0b03fed61c
commit 8c494eabbf
3 changed files with 12 additions and 0 deletions
+1
View File
@@ -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();
}