mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
Add more numeric separators.
This commit is contained in:
parent
cd26a6f8ff
commit
d40488ccf1
@ -2366,7 +2366,7 @@ int View::DrawZoneLevel( const Vector<ZoneEvent*>& vec, bool hover, double pxns,
|
|||||||
if( num > 1 )
|
if( num > 1 )
|
||||||
{
|
{
|
||||||
ImGui::BeginTooltip();
|
ImGui::BeginTooltip();
|
||||||
ImGui::Text( "Zones too small to display: %i", num );
|
ImGui::Text( "Zones too small to display: %s", RealToString( num, true ) );
|
||||||
ImGui::Separator();
|
ImGui::Separator();
|
||||||
ImGui::Text( "Execution time: %s", TimeToString( rend - ev.start ) );
|
ImGui::Text( "Execution time: %s", TimeToString( rend - ev.start ) );
|
||||||
ImGui::EndTooltip();
|
ImGui::EndTooltip();
|
||||||
@ -2562,7 +2562,7 @@ int View::DrawGpuZoneLevel( const Vector<GpuEvent*>& vec, bool hover, double pxn
|
|||||||
if( num > 1 )
|
if( num > 1 )
|
||||||
{
|
{
|
||||||
ImGui::BeginTooltip();
|
ImGui::BeginTooltip();
|
||||||
ImGui::Text( "Zones too small to display: %i", num );
|
ImGui::Text( "Zones too small to display: %s", RealToString( num, true ) );
|
||||||
ImGui::Separator();
|
ImGui::Separator();
|
||||||
ImGui::Text( "Execution time: %s", TimeToString( rend - ev.gpuStart ) );
|
ImGui::Text( "Execution time: %s", TimeToString( rend - ev.gpuStart ) );
|
||||||
ImGui::EndTooltip();
|
ImGui::EndTooltip();
|
||||||
|
Loading…
Reference in New Issue
Block a user