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

Display extra zone data count.

This commit is contained in:
Bartosz Taudul
2020-01-26 17:28:37 +01:00
parent 3e45e4abd9
commit 1915a9e5f6
2 changed files with 5 additions and 0 deletions
+4
View File
@@ -11201,6 +11201,10 @@ void View::DrawInfo()
TextFocused( "Queue delay:", TimeToString( m_worker.GetDelay() ) );
TextFocused( "Timer resolution:", TimeToString( m_worker.GetResolution() ) );
TextFocused( "CPU zones:", RealToString( m_worker.GetZoneCount(), true ) );
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
TextFocused( "Extra data:", RealToString( m_worker.GetZoneExtraCount(), true ) );
TextFocused( "GPU zones:", RealToString( m_worker.GetGpuZoneCount(), true ) );
TextFocused( "Lock events:", RealToString( m_worker.GetLockCount(), true ) );
TextFocused( "Plot data points:", RealToString( m_worker.GetPlotCount(), true ) );