| 262 | } Stats; |
| 263 | |
| 264 | static void stats_init(Stats* s) { |
| 265 | s->lastTime = now_ms(); |
| 266 | s->firstTime = 0.; |
| 267 | s->firstFrame = 0; |
| 268 | s->numFrames = 0; |
| 269 | } |
| 270 | |
| 271 | static void stats_startFrame(Stats* s) { s->frameTime = now_ms(); } |
| 272 |
no test coverage detected