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

Different sorting modes for zone time distribution.

This commit is contained in:
Bartosz Taudul
2019-10-09 21:42:46 +02:00
parent f03b7f33ed
commit 6ced346e08
2 changed files with 23 additions and 4 deletions
+5
View File
@@ -561,6 +561,11 @@ private:
bool sync = false;
bool zoom = false;
} m_playback;
struct TimeDistribution {
enum class SortBy : int { Count, Time, Mtpc };
SortBy sortBy = SortBy::Time;
} m_timeDist;
};
}