Home
last modified time | relevance | path

Searched refs:xrel (Results 1 – 7 of 7) sorted by relevance

/external/qemu/distrib/sdl-1.2.12/src/video/windx5/
DSDL_dx5events.c291 Sint16 xrel, yrel; in handle_mouse() local
383 xrel = 0; in handle_mouse()
389 if ( xrel || yrel ) { in handle_mouse()
391 0, 1, xrel, yrel); in handle_mouse()
392 xrel = 0; in handle_mouse()
397 xrel += (Sint16)ptrbuf[i].dwData; in handle_mouse()
401 if ( xrel || yrel ) { in handle_mouse()
403 0, 1, xrel, yrel); in handle_mouse()
404 xrel = 0; in handle_mouse()
412 if ( xrel || yrel ) { in handle_mouse()
[all …]
/external/qemu/distrib/sdl-1.2.12/src/joystick/
DSDL_joystick.c470 Sint16 xrel, Sint16 yrel) in SDL_PrivateJoystickBall() argument
475 joystick->balls[ball].dx += xrel; in SDL_PrivateJoystickBall()
486 event.jball.xrel = xrel; in SDL_PrivateJoystickBall()
DSDL_joystick_c.h34 Uint8 ball, Sint16 xrel, Sint16 yrel);
/external/qemu/distrib/sdl-1.2.12/include/
DSDL_events.h132 Sint16 xrel; /* The relative motion in the X direction */ member
158 Sint16 xrel; /* The relative motion in the X direction */ member
/external/qemu/distrib/sdl-1.2.12/src/joystick/linux/
DSDL_sysjoystick.c1149 int xrel, yrel; in SDL_SYS_JoystickUpdate() local
1151 xrel = joystick->hwdata->balls[i].axis[0]; in SDL_SYS_JoystickUpdate()
1153 if ( xrel || yrel ) { in SDL_SYS_JoystickUpdate()
1156 SDL_PrivateJoystickBall(joystick, (Uint8)i, xrel, yrel); in SDL_SYS_JoystickUpdate()
/external/qemu/distrib/sdl-1.2.12/src/events/
DSDL_mouse.c182 event.motion.xrel = Xrel; in SDL_PrivateMouseMotion()
/external/qemu/android/skin/
Dwindow.c991 skin_window_trackball_move( SkinWindow* window, int xrel, int yrel ) in skin_window_trackball_move() argument
995 if ( skin_trackball_move( state->ball, xrel, yrel ) ) { in skin_window_trackball_move()
1496 skin_window_trackball_move( window, ev->motion.xrel, ev->motion.yrel ); in skin_window_process_event()