Lines Matching defs:mods
411 int mods = 0;
414 mods |= GLFW_MOD_SHIFT;
416 mods |= GLFW_MOD_CONTROL;
418 mods |= GLFW_MOD_ALT;
420 mods |= GLFW_MOD_SUPER;
422 mods |= GLFW_MOD_CAPS_LOCK;
424 mods |= GLFW_MOD_NUM_LOCK;
426 return mods;
714 const int mods = getKeyMods();
788 _glfwInputKey(window, GLFW_KEY_LEFT_SHIFT, scancode, action, mods);
789 _glfwInputKey(window, GLFW_KEY_RIGHT_SHIFT, scancode, action, mods);
794 _glfwInputKey(window, key, scancode, GLFW_PRESS, mods);
795 _glfwInputKey(window, key, scancode, GLFW_RELEASE, mods);
798 _glfwInputKey(window, key, scancode, action, mods);