| 435 | LARGE_INTEGER count; |
| 436 | LARGE_INTEGER freq; |
| 437 | TimerCPU() |
| 438 | { |
| 439 | QueryPerformanceCounter(&count); |
| 440 | QueryPerformanceFrequency(&freq); |
| 441 | oldCount = count; |
| 442 | } |
| 443 | double getDeltaTime() |
| 444 | { |
| 445 | QueryPerformanceCounter(&count); |
nothing calls this directly
no outgoing calls
no test coverage detected