summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/profiler.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/profiler.h b/src/profiler.h
index 938742f22..f887584d1 100644
--- a/src/profiler.h
+++ b/src/profiler.h
@@ -175,7 +175,8 @@ private:
enum ScopeProfilerType{
SPT_ADD,
- SPT_AVG
+ SPT_AVG,
+ SPT_GRAPH_ADD
};
class ScopeProfiler
@@ -216,6 +217,9 @@ public:
case SPT_AVG:
m_profiler->avg(m_name, duration);
break;
+ case SPT_GRAPH_ADD:
+ m_profiler->graphAdd(m_name, duration);
+ break;
}
}
delete m_timer;