| 137 | } |
| 138 | |
| 139 | static void onGLFWKeyCallback(GLFWwindow* window, int key, int scancode, int action, int mods) |
| 140 | { |
| 141 | if (_view) |
| 142 | _view->onGLFWKeyCallback(window, key, scancode, action, mods); |
| 143 | } |
| 144 | |
| 145 | static void onGLFWCharCallback(GLFWwindow* window, unsigned int character) |
| 146 | { |
nothing calls this directly
no test coverage detected