| 144 | } |
| 145 | |
| 146 | static void WindowPosCallback_GLFW(GLFWwindow *window, int xpos, int ypos) |
| 147 | { |
| 148 | DeviceManager *manager = reinterpret_cast<DeviceManager *>(glfwGetWindowUserPointer(window)); |
| 149 | manager->WindowPosCallback(xpos, ypos); |
| 150 | } |
| 151 | |
| 152 | static void WindowContentScaleCallback_GLFW(GLFWwindow *window, float scaleX, float scaleY) |
| 153 | { |
nothing calls this directly
no test coverage detected