Add ScopeProfilerType SPT_GRAPH_ADD

master
Perttu Ahola 2012-03-21 15:38:24 +02:00
parent 194258b479
commit da4f51332f
1 changed files with 5 additions and 1 deletions

View File

@ -175,7 +175,8 @@ private:
enum ScopeProfilerType{ enum ScopeProfilerType{
SPT_ADD, SPT_ADD,
SPT_AVG SPT_AVG,
SPT_GRAPH_ADD
}; };
class ScopeProfiler class ScopeProfiler
@ -216,6 +217,9 @@ public:
case SPT_AVG: case SPT_AVG:
m_profiler->avg(m_name, duration); m_profiler->avg(m_name, duration);
break; break;
case SPT_GRAPH_ADD:
m_profiler->graphAdd(m_name, duration);
break;
} }
} }
delete m_timer; delete m_timer;