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

Display count of symbols.

This commit is contained in:
Bartosz Taudul
2020-02-26 23:02:39 +01:00
parent a35795f793
commit 75312c7bb6
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -11628,6 +11628,7 @@ void View::DrawInfo()
TextFocused( "Memory allocations:", RealToString( m_worker.GetMemData().data.size() ) );
TextFocused( "Source locations:", RealToString( m_worker.GetSrcLocCount() ) );
TextFocused( "Strings:", RealToString( m_worker.GetStringsCount() ) );
TextFocused( "Symbols:", RealToString( m_worker.GetSymbolsCount() ) );
TextFocused( "Call stacks:", RealToString( m_worker.GetCallstackPayloadCount() ) );
TextFocused( "Call stack frames:", RealToString( m_worker.GetCallstackFrameCount() ) );
TextFocused( "Call stack samples:", RealToString( m_worker.GetCallstackSampleCount() ) );