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

Add aggregate inlines UI.

This commit is contained in:
Bartosz Taudul
2024-03-13 18:51:41 +01:00
parent f264d0736a
commit f04cdb7782
2 changed files with 5 additions and 0 deletions
+1
View File
@@ -494,6 +494,7 @@ private:
bool m_showExternalFrames = true;
bool m_showUnknownFrames = true;
bool m_statSeparateInlines = false;
bool m_mergeInlines = false;
bool m_statShowAddress = false;
bool m_statShowKernel = true;
bool m_groupChildrenLocations = false;
+4
View File
@@ -300,6 +300,10 @@ void View::DrawStatistics()
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
ImGui::Checkbox( ICON_FA_LAYER_GROUP " Aggregate", &m_mergeInlines );
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
ImGui::Checkbox( ICON_FA_AT " Address", &m_statShowAddress );
ImGui::SameLine();
ImGui::Spacing();