mirror of
https://github.com/wolfpld/tracy.git
synced 2025-03-20 07:40:02 +08:00
Reconstruct event data.
This commit is contained in:
Executable
+21
@@ -0,0 +1,21 @@
|
||||
#ifndef __TRACYEVENT_HPP__
|
||||
#define __TRACYEVENT_HPP__
|
||||
|
||||
#include <vector>
|
||||
|
||||
namespace tracy
|
||||
{
|
||||
|
||||
struct Event
|
||||
{
|
||||
int64_t start;
|
||||
int64_t end;
|
||||
|
||||
std::vector<uint64_t> child;
|
||||
};
|
||||
|
||||
enum { EventSize = sizeof( Event ) };
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user