/AliOS-Things-master/components/SDL2/src/video/android/ |
A D | SDL_androidmouse.c | 237 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 D | SDL_windowsevents.c | 497 SDL_SendMouseMotion(data->window, 0, 0, cursorPos.x, cursorPos.y); in WIN_WindowProc() 543 … SDL_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() 612 … SDL_SendMouseMotion(data->window, 0, 1, (int)rawmouse->lLastX, (int)rawmouse->lLastY); in WIN_WindowProc() 627 … SDL_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() 686 … SDL_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 D | SDL_winrtpointerinput.cpp | 255 SDL_SendMouseMotion(window, 0, 0, (int)windowPoint.X, (int)windowPoint.Y); 389 SDL_SendMouseMotion(
|
/AliOS-Things-master/components/SDL2/src/events/ |
A D | SDL_mouse_c.h | 126 extern int SDL_SendMouseMotion(SDL_Window * window, SDL_MouseID mouseID, int relative, int x, int y…
|
A D | SDL_touch.c | 271 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 D | SDL_mouse.c | 293 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 D | SDL_BApp.h | 244 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 D | SDL_x11xinput2.c | 195 …SDL_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 D | SDL_x11events.c | 783 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 D | SDL_evdev.c | 352 … SDL_SendMouseMotion(mouse->focus, mouse->mouseID, SDL_FALSE, events[i].value, mouse->y); in SDL_EVDEV_Poll() 360 … SDL_SendMouseMotion(mouse->focus, mouse->mouseID, SDL_FALSE, mouse->x, events[i].value); in SDL_EVDEV_Poll() 369 … SDL_SendMouseMotion(mouse->focus, mouse->mouseID, SDL_TRUE, events[i].value, 0); in SDL_EVDEV_Poll() 372 … SDL_SendMouseMotion(mouse->focus, mouse->mouseID, SDL_TRUE, 0, events[i].value); in SDL_EVDEV_Poll()
|
/AliOS-Things-master/components/SDL2/src/video/emscripten/ |
A D | SDL_emscriptenevents.c | 337 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 D | SDL_naclevents.c | 373 … SDL_SendMouseMotion(mouse->focus, mouse->mouseID, SDL_FALSE, location.x, location.y); in NACL_PumpEvents()
|
/AliOS-Things-master/components/SDL2/src/video/cocoa/ |
A D | SDL_cocoamouse.m | 248 SDL_SendMouseMotion(win, mouse->mouseID, 0, x - win->x, y - win->y); 415 SDL_SendMouseMotion(mouse->focus, mouseID, 1, (int)deltaX, (int)deltaY);
|
A D | SDL_cocoawindow.m | 647 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 D | SDL_evdev.c | 148 … SDL_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 D | SDL_rpimouse.c | 258 SDL_SendMouseMotion(mouse->focus, mouse->mouseID, 0, x, y); in RPI_WarpMouseGlobal()
|
/AliOS-Things-master/components/SDL2/src/video/kmsdrm/ |
A D | SDL_kmsdrmmouse.c | 428 SDL_SendMouseMotion(mouse->focus, mouse->mouseID, 0, x, y); in KMSDRM_WarpMouseGlobal()
|
/AliOS-Things-master/components/SDL2/src/video/directfb/ |
A D | SDL_DirectFB_events.c | 43 #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 D | SDL_waylandevents.c | 233 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 D | SDL_winrtapp_direct3d.cpp | 631 SDL_SendMouseMotion(window, 0, 0, (int)cursorPos.X, (int)cursorPos.Y);
|
/AliOS-Things-master/components/SDL2/src/video/uikit/ |
A D | SDL_uikitview.m | 169 SDL_SendMouseMotion(sdlwindow, 0, 0, (int)point.x, (int)point.y);
|