|
@@ -164,8 +164,6 @@ static void charCallback(GLFWwindow *win, unsigned int codepoint) { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
static void keyCallback(GLFWwindow *win, int key, int scancode, int action, int mods) { |
|
|
static void keyCallback(GLFWwindow *win, int key, int scancode, int action, int mods) { |
|
|
DEBUG("key %d scancode %d name '%s' Z scancode %d Q scancode %d 1 scancode %d", key, scancode, glfwGetKeyName(key, scancode), glfwGetKeyScancode(GLFW_KEY_Z), glfwGetKeyScancode(GLFW_KEY_Q), glfwGetKeyScancode(GLFW_KEY_1)); |
|
|
|
|
|
|
|
|
|
|
|
Window *window = (Window*) glfwGetWindowUserPointer(win); |
|
|
Window *window = (Window*) glfwGetWindowUserPointer(win); |
|
|
if (APP->event->handleKey(window->mousePos, key, scancode, action, mods)) |
|
|
if (APP->event->handleKey(window->mousePos, key, scancode, action, mods)) |
|
|
return; |
|
|
return; |
|
|