consistency

This commit is contained in:
Irlan
2019-03-30 11:51:55 -03:00
parent 812ee84d7e
commit f59df50fbd
6 changed files with 29 additions and 30 deletions

View File

@ -26,6 +26,7 @@
struct ProfilerRecord
{
const char* name;
float64 time;
float64 elapsed;
float64 maxElapsed;
u32 call;
@ -41,7 +42,9 @@ public:
void EndEvents();
void Add(const char* name, float64 elapsedTime);
void BeginEvent(const char* name, float64 time);
void EndEvent(const char* name, float64 time);
ProfilerRecord* FindRecord(const char* name);