mirror of
https://github.com/wolfpld/tracy
synced 2025-04-30 20:53:52 +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();
|
ImGui::SameLine();
|
||||||
TextDisabledUnformatted( "P" );
|
TextDisabledUnformatted( "P" );
|
||||||
|
TooltipIfHovered( "Jump from one CPU package to another" );
|
||||||
}
|
}
|
||||||
else if( tt0->die != tt1->die )
|
else if( tt0->die != tt1->die )
|
||||||
{
|
{
|
||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
TextDisabledUnformatted( "D" );
|
TextDisabledUnformatted( "D" );
|
||||||
|
TooltipIfHovered( "Jump from one CPU die to another, within the same package" );
|
||||||
}
|
}
|
||||||
else if( tt0->core != tt1->core )
|
else if( tt0->core != tt1->core )
|
||||||
{
|
{
|
||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
TextDisabledUnformatted( "C" );
|
TextDisabledUnformatted( "C" );
|
||||||
|
TooltipIfHovered( "Jump from one CPU core to another, within the same die" );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user