diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 532384c7..abb427e3 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -3808,6 +3808,16 @@ void View::DrawMemory() } } + ImGui::Separator(); + if( ImGui::TreeNode( "Active allocations" ) ) + { + ListMemData( mem.active.begin(), mem.active.end(), []( auto& v ) { + ImGui::Text( "0x%" PRIx64, v->second->ptr ); + return v->second; + } ); + ImGui::TreePop(); + } + ImGui::End(); }