| 120 | } |
| 121 | |
| 122 | static void WindowIconifyCallback_GLFW(GLFWwindow *window, int iconified) |
| 123 | { |
| 124 | DeviceManager *manager = reinterpret_cast<DeviceManager *>(glfwGetWindowUserPointer(window)); |
| 125 | manager->WindowIconifyCallback(iconified); |
| 126 | } |
| 127 | |
| 128 | static void WindowFocusCallback_GLFW(GLFWwindow *window, int focused) |
| 129 | { |
nothing calls this directly
no test coverage detected