| 200 | |
| 201 | |
| 202 | static void cursorEnterCallback(GLFWwindow* win, int entered) { |
| 203 | contextSet((Context*) glfwGetWindowUserPointer(win)); |
| 204 | if (!entered) { |
| 205 | APP->event->handleLeave(); |
| 206 | } |
| 207 | } |
| 208 | |
| 209 | |
| 210 | static void scrollCallback(GLFWwindow* win, double x, double y) { |
nothing calls this directly
no test coverage detected