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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user