1
0
mirror of https://github.com/wolfpld/tracy synced 2025-05-05 06:33:52 +00:00

Display number of thread running state regions.

This commit is contained in:
Bartosz Taudul 2019-08-14 17:36:19 +02:00
parent fadac0b433
commit 0b12db5ee6

View File

@ -2132,6 +2132,10 @@ void View::DrawZones()
{ {
TextFocused( "Locks:", RealToString( lockCnt, true ) ); TextFocused( "Locks:", RealToString( lockCnt, true ) );
} }
if( ctx )
{
TextFocused( "Running state regions:", RealToString( ctx->v.size(), true ) );
}
ImGui::EndTooltip(); ImGui::EndTooltip();
if( ImGui::IsMouseClicked( 0 ) ) if( ImGui::IsMouseClicked( 0 ) )