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

Display explicit names of loaded things.

This commit is contained in:
Bartosz Taudul
2018-07-29 16:56:46 +02:00
parent 821be252d5
commit 18896044c4
3 changed files with 51 additions and 10 deletions
+12
View File
@@ -47,6 +47,18 @@ struct UnsupportedVersion : public std::exception
struct LoadProgress
{
enum Stage
{
Initialization,
Locks,
Messages,
Zones,
GpuZones,
Plots,
Memory,
CallStacks
};
LoadProgress() : total( 0 ), progress( 0 ), subTotal( 0 ), subProgress( 0 ) {}
std::atomic<uint64_t> total;