tracy/server/TracyEvent.hpp
2017-09-25 22:46:14 +02:00

25 lines
293 B
C++
Executable File

#ifndef __TRACYEVENT_HPP__
#define __TRACYEVENT_HPP__
#include "TracyVector.hpp"
namespace tracy
{
struct Event
{
int64_t start;
int64_t end;
uint32_t srcloc;
uint32_t color;
Event* parent;
Vector<Event*> child;
};
enum { EventSize = sizeof( Event ) };
}
#endif