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

Allow grouping zones by parent.

This commit is contained in:
Bartosz Taudul
2019-10-31 14:50:29 +01:00
parent c0df3dd965
commit 978071f2ba
2 changed files with 32 additions and 1 deletions
+1 -1
View File
@@ -380,7 +380,7 @@ private:
struct FindZone {
enum : uint64_t { Unselected = std::numeric_limits<uint64_t>::max() - 1 };
enum class GroupBy : int { Thread, UserText, Callstack, NoGrouping };
enum class GroupBy : int { Thread, UserText, Callstack, Parent, NoGrouping };
enum class SortBy : int { Order, Count, Time, Mtpc };
enum class TableSortBy : int { Starttime, Runtime, Name };