| 306 | } |
| 307 | |
| 308 | bool Time::OnBeginDraw(double time) |
| 309 | { |
| 310 | if (Draw.OnTickBegin(time, GetFps(DrawFPS), 1.0f)) |
| 311 | { |
| 312 | Current = &Draw; |
| 313 | return true; |
| 314 | } |
| 315 | return false; |
| 316 | } |
| 317 | |
| 318 | void Time::OnEndUpdate() |
| 319 | { |
nothing calls this directly
no test coverage detected