This commit is contained in:
Irlan
2019-03-31 11:02:26 -03:00
parent 725ca3ce31
commit fb895192e7
3 changed files with 8 additions and 8 deletions

View File

@ -46,7 +46,7 @@ void Profiler::DestroyNode(ProfilerNode* node)
m_pool.Free(node);
}
void Profiler::PushEvent(const char* name)
void Profiler::BeginScope(const char* name)
{
m_time.Update();
@ -71,7 +71,7 @@ void Profiler::PushEvent(const char* name)
m_top = n;
}
void Profiler::PopEvent()
void Profiler::EndScope()
{
m_time.Update();