Also display non-user plot data count.

This commit is contained in:
Bartosz Taudul
2020-02-05 23:41:53 +01:00
parent 1bad607e6c
commit 7425cd7112
3 changed files with 17 additions and 1 deletions

View File

@@ -11273,6 +11273,8 @@ void View::DrawInfo()
TextFocused( "GPU zones:", RealToString( m_worker.GetGpuZoneCount() ) );
TextFocused( "Lock events:", RealToString( m_worker.GetLockCount() ) );
TextFocused( "Plot data points:", RealToString( m_worker.GetPlotCount() ) );
ImGui::SameLine();
TextFocused( "+", RealToString( m_worker.GetTracyPlotCount() ) );
TextFocused( "Memory allocations:", RealToString( m_worker.GetMemData().data.size() ) );
TextFocused( "Source locations:", RealToString( m_worker.GetSrcLocCount() ) );
TextFocused( "Strings:", RealToString( m_worker.GetStringsCount() ) );