* Store the previous accumulator value and reset for a new cycle of accumulating measurements. * @note This function must be called once per frame, otherwise measurements are not collected. * @param elem The element to begin a new measurement cycle of */
| 330 | * @param elem The element to begin a new measurement cycle of |
| 331 | */ |
| 332 | void PerformanceAccumulator::Reset(PerformanceElement elem) |
| 333 | { |
| 334 | _pf_data[elem].BeginAccumulate(GetPerformanceTimer()); |
| 335 | } |
| 336 | |
| 337 | |
| 338 | void ShowFrametimeGraphWindow(PerformanceElement elem); |
nothing calls this directly
no test coverage detected