From e3509b6eee8d59bf7ed4ceea510aa62d127c58dc Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 1 Apr 2018 23:57:18 +0200 Subject: [PATCH] Display total number of allocations. --- server/TracyView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index d145da72..aa788ff6 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -3656,7 +3656,7 @@ void View::DrawMemory() ImGui::Begin( "Memory", &m_memInfo.show ); - ImGui::Text( "Active allocations: %s", RealToString( mem.active.size(), true ) ); + ImGui::Text( "Total allocations: %-10s Active allocations: %s", RealToString( mem.data.size(), true ), RealToString( mem.active.size(), true ) ); ImGui::InputText( "", m_memInfo.pattern, 1024 ); ImGui::SameLine();