Home
last modified time | relevance | path

Searched refs:mouse_last (Results 1 – 3 of 3) sorted by relevance

/external/qemu/distrib/sdl-1.2.15/src/video/x11/
DSDL_x11events.c341 deltax = xevent->xmotion.x - mouse_last.x; in X11_WarpedMotion()
342 deltay = xevent->xmotion.y - mouse_last.y; in X11_WarpedMotion()
346 mouse_last.x = xevent->xmotion.x; in X11_WarpedMotion()
347 mouse_last.y = xevent->xmotion.y; in X11_WarpedMotion()
356 deltax = xevent->xmotion.x - mouse_last.x; in X11_WarpedMotion()
357 deltay = xevent->xmotion.y - mouse_last.y; in X11_WarpedMotion()
361 mouse_last.x = xevent->xmotion.x; in X11_WarpedMotion()
362 mouse_last.y = xevent->xmotion.y; in X11_WarpedMotion()
365 mouse_last.x = w/2; in X11_WarpedMotion()
366 mouse_last.y = h/2; in X11_WarpedMotion()
[all …]
DSDL_x11video.h92 } mouse_last; member
184 #define mouse_last (this->hidden->mouse_last) macro
DSDL_x11mouse.c256 SDL_GetMouseState(&mouse_last.x, &mouse_last.y); in X11_CheckMouseModeNoLock()