| 132 | } |
| 133 | |
| 134 | static void WindowRefreshCallback_GLFW(GLFWwindow *window) |
| 135 | { |
| 136 | DeviceManager *manager = reinterpret_cast<DeviceManager *>(glfwGetWindowUserPointer(window)); |
| 137 | manager->WindowRefreshCallback(); |
| 138 | } |
| 139 | |
| 140 | static void WindowCloseCallback_GLFW(GLFWwindow *window) |
| 141 | { |
nothing calls this directly
no test coverage detected