mirror of
https://github.com/wolfpld/tracy.git
synced 2025-03-20 07:40:02 +08:00
Move common event data to separate struct.
This commit is contained in:
@@ -27,10 +27,15 @@ struct QueueZoneEnd
|
||||
uint64_t id;
|
||||
};
|
||||
|
||||
struct QueueItem
|
||||
struct QueueHeader
|
||||
{
|
||||
QueueType type;
|
||||
int64_t time;
|
||||
};
|
||||
|
||||
struct QueueItem
|
||||
{
|
||||
QueueHeader hdr;
|
||||
union
|
||||
{
|
||||
QueueZoneBegin zoneBegin;
|
||||
|
||||
Reference in New Issue
Block a user