| 105 | } |
| 106 | |
| 107 | static void onGLFWMouseCallBack(GLFWwindow* window, int button, int action, int modify) |
| 108 | { |
| 109 | if (_view) |
| 110 | _view->onGLFWMouseCallBack(window, button, action, modify); |
| 111 | } |
| 112 | |
| 113 | static void onGLFWMouseMoveCallBack(GLFWwindow* window, double x, double y) |
| 114 | { |
nothing calls this directly
no test coverage detected