Searched refs:_glfwInputJoystickAxis (Results 1 - 4 of 4) sorted by relevance
/third_party/glfw/src/ |
H A D | win32_joystick.c | 644 _glfwInputJoystickAxis(js, ai, value); in _glfwPollJoystickWin32() 715 _glfwInputJoystickAxis(js, 0, (xis.Gamepad.sThumbLX + 0.5f) / 32767.5f); in _glfwPollJoystickWin32() 716 _glfwInputJoystickAxis(js, 1, -(xis.Gamepad.sThumbLY + 0.5f) / 32767.5f); in _glfwPollJoystickWin32() 717 _glfwInputJoystickAxis(js, 2, (xis.Gamepad.sThumbRX + 0.5f) / 32767.5f); in _glfwPollJoystickWin32() 718 _glfwInputJoystickAxis(js, 3, -(xis.Gamepad.sThumbRY + 0.5f) / 32767.5f); in _glfwPollJoystickWin32() 719 _glfwInputJoystickAxis(js, 4, xis.Gamepad.bLeftTrigger / 127.5f - 1.f); in _glfwPollJoystickWin32() 720 _glfwInputJoystickAxis(js, 5, xis.Gamepad.bRightTrigger / 127.5f - 1.f); in _glfwPollJoystickWin32()
|
H A D | linux_joystick.c | 101 _glfwInputJoystickAxis(js, index, normalized); in handleAbsEvent()
|
H A D | internal.h | 943 void _glfwInputJoystickAxis(_GLFWjoystick* js, int axis, float value);
|
H A D | input.c | 434 void _glfwInputJoystickAxis(_GLFWjoystick* js, int axis, float value) in _glfwInputJoystickAxis() function
|
Completed in 7 milliseconds