Home
last modified time | relevance | path

Searched refs:SDL_SendMouseMotion (Results 1 – 21 of 21) sorted by relevance

/AliOS-Things-master/components/SDL2/src/video/android/
A DSDL_androidmouse.c237 SDL_SendMouseMotion(window, 0, relative, (int)x, (int)y); in Android_OnMouse()
245 SDL_SendMouseMotion(window, 0, relative, (int)x, (int)y); in Android_OnMouse()
251 SDL_SendMouseMotion(window, 0, relative, (int)x, (int)y); in Android_OnMouse()
/AliOS-Things-master/components/SDL2/src/video/windows/
A DSDL_windowsevents.c497 SDL_SendMouseMotion(data->window, 0, 0, cursorPos.x, cursorPos.y); in WIN_WindowProc()
543SDL_SendMouseMotion(data->window, 0, 0, GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)); in WIN_WindowProc()
553 SDL_SendMouseMotion(data->window, 0, 0, center_x, center_y); in WIN_WindowProc()
612SDL_SendMouseMotion(data->window, 0, 1, (int)rawmouse->lLastX, (int)rawmouse->lLastY); in WIN_WindowProc()
627SDL_SendMouseMotion(data->window, 0, 1, (int)(x-lastMousePoint.x), (int)(y-lastMousePoint.y)); in WIN_WindowProc()
646 SDL_SendMouseMotion(data->window, 0, 0, (int)pt.x, (int)pt.y); in WIN_WindowProc()
682 SDL_SendMouseMotion(data->window, 0, 0, cursorPos.x, cursorPos.y); in WIN_WindowProc()
686SDL_SendMouseMotion(data->window, SDL_TOUCH_MOUSEID, 0, cursorPos.x, cursorPos.y); in WIN_WindowProc()
688 SDL_SendMouseMotion(data->window, 0, 0, cursorPos.x, cursorPos.y); in WIN_WindowProc()
/AliOS-Things-master/components/SDL2/src/video/winrt/
A DSDL_winrtpointerinput.cpp255 SDL_SendMouseMotion(window, 0, 0, (int)windowPoint.X, (int)windowPoint.Y);
389 SDL_SendMouseMotion(
/AliOS-Things-master/components/SDL2/src/events/
A DSDL_mouse_c.h126 extern int SDL_SendMouseMotion(SDL_Window * window, SDL_MouseID mouseID, int relative, int x, int y…
A DSDL_touch.c271 SDL_SendMouseMotion(window, SDL_TOUCH_MOUSEID, 0, pos_x, pos_y); in SDL_SendTouch()
385 SDL_SendMouseMotion(window, SDL_TOUCH_MOUSEID, 0, pos_x, pos_y); in SDL_SendTouchMotion()
A DSDL_mouse.c293 SDL_SendMouseMotion(SDL_Window * window, SDL_MouseID mouseID, int relative, int x, int y) function
761 SDL_SendMouseMotion(window, mouse->mouseID, 0, x, y);
/AliOS-Things-master/components/SDL2/src/main/haiku/
A DSDL_BApp.h244 SDL_SendMouseMotion(win, 0, SDL_GetMouse()->relative_mode, dx, dy); in _HandleMouseMove()
249 SDL_SendMouseMotion(win, 0, 0, x, y); in _HandleMouseMove()
/AliOS-Things-master/components/SDL2/src/video/x11/
A DSDL_x11xinput2.c195SDL_SendMouseMotion(mouse->focus,mouse->mouseID,1,(int)relative_coords[0],(int)relative_coords[1]); in X11_HandleXinput2Event()
220 SDL_SendMouseMotion(window, 0, 0, xev->event_x, xev->event_y); in X11_HandleXinput2Event()
A DSDL_x11events.c783 SDL_SendMouseMotion(data->window, 0, 0, xevent.xcrossing.x, xevent.xcrossing.y); in X11_DispatchEvent()
800 SDL_SendMouseMotion(data->window, 0, 0, xevent.xcrossing.x, xevent.xcrossing.y); in X11_DispatchEvent()
1138 SDL_SendMouseMotion(data->window, 0, 0, xevent.xmotion.x, xevent.xmotion.y); in X11_DispatchEvent()
/AliOS-Things-master/components/SDL2/src/core/linux/
A DSDL_evdev.c352SDL_SendMouseMotion(mouse->focus, mouse->mouseID, SDL_FALSE, events[i].value, mouse->y); in SDL_EVDEV_Poll()
360SDL_SendMouseMotion(mouse->focus, mouse->mouseID, SDL_FALSE, mouse->x, events[i].value); in SDL_EVDEV_Poll()
369SDL_SendMouseMotion(mouse->focus, mouse->mouseID, SDL_TRUE, events[i].value, 0); in SDL_EVDEV_Poll()
372SDL_SendMouseMotion(mouse->focus, mouse->mouseID, SDL_TRUE, 0, events[i].value); in SDL_EVDEV_Poll()
/AliOS-Things-master/components/SDL2/src/video/emscripten/
A DSDL_emscriptenevents.c337 SDL_SendMouseMotion(window_data->window, 0, isPointerLocked, mx, my); in Emscripten_HandleMouseMove()
401 SDL_SendMouseMotion(window_data->window, 0, isPointerLocked, mx, my); in Emscripten_HandleMouseFocus()
/AliOS-Things-master/components/SDL2/src/video/nacl/
A DSDL_naclevents.c373SDL_SendMouseMotion(mouse->focus, mouse->mouseID, SDL_FALSE, location.x, location.y); in NACL_PumpEvents()
/AliOS-Things-master/components/SDL2/src/video/cocoa/
A DSDL_cocoamouse.m248 SDL_SendMouseMotion(win, mouse->mouseID, 0, x - win->x, y - win->y);
415 SDL_SendMouseMotion(mouse->focus, mouseID, 1, (int)deltaX, (int)deltaY);
A DSDL_cocoawindow.m647 SDL_SendMouseMotion(window, mouse->mouseID, 0, x, y);
1131 SDL_SendMouseMotion(window, mouseID, 0, x, y);
/AliOS-Things-master/components/SDL2/src/core/alios/
A DSDL_evdev.c148SDL_SendMouseMotion(mouse->focus, mouse->mouseID, SDL_FALSE, events->abs.x, events->abs.y); in uinput_callback()
/AliOS-Things-master/components/SDL2/src/video/raspberry/
A DSDL_rpimouse.c258 SDL_SendMouseMotion(mouse->focus, mouse->mouseID, 0, x, y); in RPI_WarpMouseGlobal()
/AliOS-Things-master/components/SDL2/src/video/kmsdrm/
A DSDL_kmsdrmmouse.c428 SDL_SendMouseMotion(mouse->focus, mouse->mouseID, 0, x, y); in KMSDRM_WarpMouseGlobal()
/AliOS-Things-master/components/SDL2/src/video/directfb/
A DSDL_DirectFB_events.c43 #define SDL_SendMouseMotion_ex(w, id, relative, x, y, p) SDL_SendMouseMotion(w, id, relative, x, y,…
48 #define SDL_SendMouseMotion_ex(w, id, relative, x, y, p) SDL_SendMouseMotion(w, id, relative, x, y)
/AliOS-Things-master/components/SDL2/src/video/wayland/
A DSDL_waylandevents.c233 SDL_SendMouseMotion(window->sdlwindow, 0, 0, sx, sy); in pointer_handle_motion()
1165 SDL_SendMouseMotion(window->sdlwindow, 0, 1, (int)dx, (int)dy); in relative_pointer_handle_relative_motion()
/AliOS-Things-master/components/SDL2/src/core/winrt/
A DSDL_winrtapp_direct3d.cpp631 SDL_SendMouseMotion(window, 0, 0, (int)cursorPos.X, (int)cursorPos.Y);
/AliOS-Things-master/components/SDL2/src/video/uikit/
A DSDL_uikitview.m169 SDL_SendMouseMotion(sdlwindow, 0, 0, (int)point.x, (int)point.y);

Completed in 45 milliseconds