removed a couple of bugs in the profiler

This commit is contained in:
Irlan
2018-10-07 20:48:26 -03:00
parent c0e324c988
commit b48b16843a
8 changed files with 60 additions and 34 deletions

View File

@ -59,11 +59,9 @@ public:
void End(ProfilerListener* listener);
// Add a profiler event to the queue.
// Return true if the even has been added to the event queue
// or false if the queue is full.
// You can control the maximum number of profiler events using
// MAX_PROFILER_EVENTS.
bool PushEvent(const char* name);
void PushEvent(const char* name);
// Remove the top profiler event.
void PopEvent();