| 1323 | } |
| 1324 | |
| 1325 | GLFWAPI double glfwGetTime(void) |
| 1326 | { |
| 1327 | _GLFW_REQUIRE_INIT_OR_RETURN(0.0); |
| 1328 | return (double) (_glfwPlatformGetTimerValue() - _glfw.timer.offset) / |
| 1329 | _glfwPlatformGetTimerFrequency(); |
| 1330 | } |
| 1331 | |
| 1332 | GLFWAPI void glfwSetTime(double time) |
| 1333 | { |
no test coverage detected