Delta time statistics.
| 160 | |
| 161 | // Delta time statistics. |
| 162 | double Statistics::GetMeanDeltaTime(std::string const& tag) { return GetMeanDeltaTime(GetHandle(tag)); } |
| 163 | double Statistics::GetMeanDeltaTime(size_t handle) { |
| 164 | std::lock_guard<std::mutex> lock(Instance().mutex_); |
| 165 | return Instance().stats_collectors_[handle].MeanDeltaTime(); |
nothing calls this directly
no test coverage detected