mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-22 14:44:34 +00:00
Add tooltips for thread jumps.
This commit is contained in:
parent
50bb383667
commit
be92ae787c
@ -717,16 +717,19 @@ void View::DrawZoneInfoWindow()
|
||||
{
|
||||
ImGui::SameLine();
|
||||
TextDisabledUnformatted( "P" );
|
||||
TooltipIfHovered( "Jump from one CPU package to another" );
|
||||
}
|
||||
else if( tt0->die != tt1->die )
|
||||
{
|
||||
ImGui::SameLine();
|
||||
TextDisabledUnformatted( "D" );
|
||||
TooltipIfHovered( "Jump from one CPU die to another, within the same package" );
|
||||
}
|
||||
else if( tt0->core != tt1->core )
|
||||
{
|
||||
ImGui::SameLine();
|
||||
TextDisabledUnformatted( "C" );
|
||||
TooltipIfHovered( "Jump from one CPU core to another, within the same die" );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user