| 165 | return Instance().stats_collectors_[handle].MeanDeltaTime(); |
| 166 | } |
| 167 | double Statistics::GetMaxDeltaTime(std::string const& tag) { return GetMaxDeltaTime(GetHandle(tag)); } |
| 168 | double Statistics::GetMaxDeltaTime(size_t handle) { |
| 169 | std::lock_guard<std::mutex> lock(Instance().mutex_); |
| 170 | return Instance().stats_collectors_[handle].MaxDeltaTime(); |
nothing calls this directly
no test coverage detected