| 513 | } |
| 514 | |
| 515 | float pull(float frameTime) |
| 516 | { |
| 517 | m_maxTimeAge += frameTime; |
| 518 | |
| 519 | if (m_maxTimeAge > 1.f) |
| 520 | { |
| 521 | m_maxTimeAge = 0.f; |
| 522 | m_maxTime = m_time; |
| 523 | m_smoothTimeSum = 0.f; |
| 524 | m_smoothTimeCount = 0.f; |
| 525 | } |
| 526 | return m_smoothTime; |
| 527 | } |
| 528 | }; |
| 529 | |
| 530 | Stat m_cpu; |
nothing calls this directly
no outgoing calls
no test coverage detected