mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
Display separators for bin counts in compare menu.
This commit is contained in:
parent
99fca9e069
commit
52f76a45ed
@ -7676,7 +7676,7 @@ void View::DrawCompare()
|
|||||||
ImGui::Text( "%s - %s", TimeToString( t0 ), TimeToString( t1 ) );
|
ImGui::Text( "%s - %s", TimeToString( t0 ), TimeToString( t1 ) );
|
||||||
TextDisabledUnformatted( "Count:" );
|
TextDisabledUnformatted( "Count:" );
|
||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
ImGui::Text( "%g / %g", floor( bins[bin].v0 ), floor( bins[bin].v1 ) );
|
ImGui::Text( "%s / %s", RealToString( floor( bins[bin].v0 ), true ), RealToString( floor( bins[bin].v1 ), true ) );
|
||||||
TextDisabledUnformatted( "Time spent in bin:" );
|
TextDisabledUnformatted( "Time spent in bin:" );
|
||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
ImGui::Text( "%s / %s", TimeToString( binTime[bin].v0 ), TimeToString( binTime[bin].v1 ) );
|
ImGui::Text( "%s / %s", TimeToString( binTime[bin].v0 ), TimeToString( binTime[bin].v1 ) );
|
||||||
|
Loading…
Reference in New Issue
Block a user