mirror of
https://github.com/luanti-org/luanti.git
synced 2025-08-11 17:51:04 +00:00
Add ScopeProfilerType SPT_GRAPH_ADD
This commit is contained in:
parent
194258b479
commit
da4f51332f
1 changed files with 5 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue