Display memory usage.

This commit is contained in:
Bartosz Taudul 2018-04-02 00:02:45 +02:00
parent 52f59c90bf
commit 5824b47a66

View File

@ -3656,7 +3656,7 @@ void View::DrawMemory()
ImGui::Begin( "Memory", &m_memInfo.show );
ImGui::Text( "Total allocations: %-10s Active allocations: %s", RealToString( mem.data.size(), true ), RealToString( mem.active.size(), true ) );
ImGui::Text( "Total allocations: %-10s Active allocations: %-10s Memory usage: %s bytes", RealToString( mem.data.size(), true ), RealToString( mem.active.size(), true ), RealToString( mem.usage, true ) );
ImGui::InputText( "", m_memInfo.pattern, 1024 );
ImGui::SameLine();