| 688 | #if defined(USE_GLFW) |
| 689 | |
| 690 | void keyboardFunc(GLFWwindow* window, int key, int scancode, int action, int mods) { |
| 691 | TutorialApplication::instance->keyboardFunc(window,key,scancode,action,mods); |
| 692 | } |
| 693 | void clickFunc(GLFWwindow* window, int button, int action, int mods) { |
| 694 | TutorialApplication::instance->clickFunc(window,button,action,mods); |
| 695 | } |
nothing calls this directly
no test coverage detected