Home
last modified time | relevance | path

Searched refs:wButtons (Results 1 – 5 of 5) sorted by relevance

/third_party/flutter/skia/third_party/externals/sdl/src/joystick/windows/
DSDL_xinputjoystick.c261 WORD wButtons = pXInputState->Gamepad.wButtons; in UpdateXInputJoystickState_OLD() local
272 …SDL_PrivateJoystickButton(joystick, button, (wButtons & s_XInputButtons[button]) ? SDL_PRESSED : S… in UpdateXInputJoystickState_OLD()
287 WORD wButtons = pXInputState->Gamepad.wButtons; in UpdateXInputJoystickState() local
299 …SDL_PrivateJoystickButton(joystick, button, (wButtons & s_XInputButtons[button]) ? SDL_PRESSED : S… in UpdateXInputJoystickState()
302 if (wButtons & XINPUT_GAMEPAD_DPAD_UP) { in UpdateXInputJoystickState()
305 if (wButtons & XINPUT_GAMEPAD_DPAD_DOWN) { in UpdateXInputJoystickState()
308 if (wButtons & XINPUT_GAMEPAD_DPAD_LEFT) { in UpdateXInputJoystickState()
311 if (wButtons & XINPUT_GAMEPAD_DPAD_RIGHT) { in UpdateXInputJoystickState()
/third_party/flutter/skia/third_party/externals/sdl/src/core/windows/
DSDL_xinput.h105 WORD wButtons; member
/third_party/flutter/glfw/deps/mingw/
Dxinput.h164 WORD wButtons; member
/third_party/skia/third_party/externals/imgui/backends/
Dimgui_impl_win32.cpp283 …#define MAP_BUTTON(NAV_NO, BUTTON_ENUM) { io.NavInputs[NAV_NO] = (gamepad.wButtons & BUTTON_EN… in ImGui_ImplWin32_UpdateGamepads()
/third_party/flutter/glfw/src/
Dwin32_joystick.c643 js->buttons[i] = (xis.Gamepad.wButtons & buttons[i]) ? 1 : 0; in pollJoystickState()