| 126 | } |
| 127 | |
| 128 | static void WindowFocusCallback_GLFW(GLFWwindow *window, int focused) |
| 129 | { |
| 130 | DeviceManager *manager = reinterpret_cast<DeviceManager *>(glfwGetWindowUserPointer(window)); |
| 131 | manager->WindowFocusCallback(focused); |
| 132 | } |
| 133 | |
| 134 | static void WindowRefreshCallback_GLFW(GLFWwindow *window) |
| 135 | { |
nothing calls this directly
no test coverage detected