| 175 | return Instance().stats_collectors_[handle].MinDeltaTime(); |
| 176 | } |
| 177 | double Statistics::GetLastDeltaTime(std::string const& tag) { return GetLastDeltaTime(GetHandle(tag)); } |
| 178 | double Statistics::GetLastDeltaTime(size_t handle) { |
| 179 | std::lock_guard<std::mutex> lock(Instance().mutex_); |
| 180 | return Instance().stats_collectors_[handle].GetLastDeltaTime(); |
nothing calls this directly
no outgoing calls
no test coverage detected