| 150 | } |
| 151 | |
| 152 | static void WindowContentScaleCallback_GLFW(GLFWwindow *window, float scaleX, float scaleY) |
| 153 | { |
| 154 | DeviceManager *manager = reinterpret_cast<DeviceManager *>(glfwGetWindowUserPointer(window)); |
| 155 | manager->WindowContentScaleCallback(scaleX, scaleY); |
| 156 | } |
| 157 | |
| 158 | static void KeyCallback_GLFW(GLFWwindow *window, int key, int scancode, int action, int mods) |
| 159 | { |
nothing calls this directly
no test coverage detected