Add tooltips for thread jumps.

This commit is contained in:
Bartosz Taudul 2024-08-24 16:50:02 +02:00
parent 50bb383667
commit be92ae787c
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

View File

@ -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" );
}
}
}