Searched refs:GLFW_RELEASE (Results 1 - 11 of 11) sorted by relevance
/third_party/glfw/src/ |
H A D | input.c | 277 assert(action == GLFW_PRESS || action == GLFW_RELEASE); in _glfwInputKey() 284 if (action == GLFW_RELEASE && window->keys[key] == GLFW_RELEASE) in _glfwInputKey() 290 if (action == GLFW_RELEASE && window->stickyKeys) in _glfwInputKey() 351 assert(action == GLFW_PRESS || action == GLFW_RELEASE); in _glfwInputMouseClick() 362 if (action == GLFW_RELEASE && window->stickyMouseButtons) in _glfwInputMouseClick() 450 assert(value == GLFW_PRESS || value == GLFW_RELEASE); in _glfwInputJoystickButton() 473 js->buttons[base + 0] = (value & 0x01) ? GLFW_PRESS : GLFW_RELEASE; in _glfwInputJoystickHat() 474 js->buttons[base + 1] = (value & 0x02) ? GLFW_PRESS : GLFW_RELEASE; in _glfwInputJoystickHat() 475 js->buttons[base + 2] = (value & 0x04) ? GLFW_PRESS : GLFW_RELEASE; in _glfwInputJoystickHat() [all...] |
H A D | linux_joystick.c | 54 value ? GLFW_PRESS : GLFW_RELEASE); in handleKeyEvent()
|
H A D | win32_window.c | 713 const int action = (HIWORD(lParam) & KF_UP) ? GLFW_RELEASE : GLFW_PRESS; in windowProc() 783 if (action == GLFW_RELEASE && wParam == VK_SHIFT) in windowProc() 795 _glfwInputKey(window, key, scancode, GLFW_RELEASE, mods); in windowProc() 831 action = GLFW_RELEASE; in windowProc() 2163 _glfwInputKey(window, key, scancode, GLFW_RELEASE, getKeyMods()); in _glfwPollEventsWin32()
|
H A D | x11_window.c | 1352 _glfwInputKey(window, key, keycode, GLFW_RELEASE, mods); in processEvent() 1398 GLFW_RELEASE, in processEvent() 1405 GLFW_RELEASE, in processEvent() 1412 GLFW_RELEASE, in processEvent() 1421 GLFW_RELEASE, in processEvent()
|
H A D | window.c | 60 _glfwInputKey(window, key, scancode, GLFW_RELEASE, 0); in _glfwInputWindowFocus() 67 _glfwInputMouseClick(window, button, GLFW_RELEASE, 0); in _glfwInputWindowFocus()
|
H A D | wl_window.c | 1778 state == WL_KEYBOARD_KEY_STATE_PRESSED ? GLFW_PRESS : GLFW_RELEASE; in keyboardHandleKey()
|
/third_party/glfw/tests/ |
H A D | events.c | 204 case GLFW_RELEASE: in get_action_name()
|
H A D | triangle-vulkan.c | 1480 if (key == GLFW_KEY_ESCAPE && action == GLFW_RELEASE) in demo_key_callback()
|
/third_party/skia/third_party/externals/imgui/examples/libs/glfw/include/GLFW/ |
H A D | glfw3.h | 258 #define GLFW_RELEASE 0 macro 941 * @param[in] action One of `GLFW_PRESS` or `GLFW_RELEASE`. 1015 * @param[in] action `GLFW_PRESS`, `GLFW_RELEASE` or `GLFW_REPEAT`. 2992 * `GLFW_RELEASE`. The higher-level action `GLFW_REPEAT` is only reported to 3011 * @return One of `GLFW_PRESS` or `GLFW_RELEASE`. 3032 * `GLFW_RELEASE`. 3040 * @return One of `GLFW_PRESS` or `GLFW_RELEASE`. 3554 * Each element in the array is either `GLFW_PRESS` or `GLFW_RELEASE`.
|
/third_party/skia/third_party/externals/imgui/backends/ |
H A D | imgui_impl_glfw.cpp | 150 if (action == GLFW_RELEASE) in ImGui_ImplGlfw_KeyCallback()
|
/third_party/glfw/include/GLFW/ |
H A D | glfw3.h | 331 #define GLFW_RELEASE 0 macro 1794 * @param[in] action One of `GLFW_PRESS` or `GLFW_RELEASE`. Future releases 1885 * @param[in] action `GLFW_PRESS`, `GLFW_RELEASE` or `GLFW_REPEAT`. Future 2117 * or `GLFW_RELEASE`. 4875 * `GLFW_RELEASE`. The action `GLFW_REPEAT` is only reported to the key callback. 4893 * @return One of `GLFW_PRESS` or `GLFW_RELEASE`. 4914 * `GLFW_RELEASE`. 4925 * @return One of `GLFW_PRESS` or `GLFW_RELEASE`. 5528 * Each element in the array is either `GLFW_PRESS` or `GLFW_RELEASE`. 5890 * `GLFW_RELEASE` an [all...] |
Completed in 30 milliseconds