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

Drop accuracy bits from GPU context.

This commit is contained in:
Bartosz Taudul
2020-07-07 01:21:36 +02:00
parent 384e2e3fa1
commit 1013ec8db7
3 changed files with 7 additions and 12 deletions
-7
View File
@@ -2595,17 +2595,10 @@ void View::DrawZones()
}
}
TextFocused( "Zone count:", RealToString( v->count ) );
//TextFocused( "Top-level zones:", RealToString( v->timeline.size() ) );
if( isMultithreaded )
{
TextFocused( "Timestamp accuracy:", TimeToString( v->period ) );
}
else
{
TextDisabledUnformatted( "Query accuracy bits:" );
ImGui::SameLine();
ImGui::Text( "%i", v->accuracyBits );
}
ImGui::EndTooltip();
}
}