Home
last modified time | relevance | path

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

/third_party/flutter/skia/third_party/externals/sdl/src/video/android/
DSDL_androidtouch.c114 SDL_SendMouseMotion(Android_Window, SDL_TOUCH_MOUSEID, 0, window_x, window_y); in Android_OnTouch()
116 … SDL_SendMouseButton(Android_Window, SDL_TOUCH_MOUSEID, SDL_PRESSED, SDL_BUTTON_LEFT); in Android_OnTouch()
129 SDL_SendMouseMotion(Android_Window, SDL_TOUCH_MOUSEID, 0, window_x, window_y); in Android_OnTouch()
139 … SDL_SendMouseButton(Android_Window, SDL_TOUCH_MOUSEID, SDL_RELEASED, SDL_BUTTON_LEFT); in Android_OnTouch()
/third_party/flutter/skia/third_party/externals/sdl/src/video/winrt/
DSDL_winrtpointerinput.cpp236 … SDL_SendMouseMotion(window, SDL_TOUCH_MOUSEID, 0, (int)windowPoint.X, (int)windowPoint.Y);
237 SDL_SendMouseButton(window, SDL_TOUCH_MOUSEID, SDL_PRESSED, button);
267 … SDL_SendMouseMotion(window, SDL_TOUCH_MOUSEID, 0, (int)windowPoint.X, (int)windowPoint.Y);
294 SDL_SendMouseButton(window, SDL_TOUCH_MOUSEID, SDL_RELEASED, button);
/third_party/flutter/skia/third_party/externals/sdl/src/video/uikit/
DSDL_uikitview.m149 … SDL_SendMouseMotion(sdlwindow, SDL_TOUCH_MOUSEID, 0, locationInView.x, locationInView.y);
152 … SDL_SendMouseButtonClicks(sdlwindow, SDL_TOUCH_MOUSEID, SDL_PRESSED, SDL_BUTTON_LEFT, clicks);
171 … SDL_SendMouseButtonClicks(sdlwindow, SDL_TOUCH_MOUSEID, SDL_RELEASED, SDL_BUTTON_LEFT, clicks);
195 … SDL_SendMouseMotion(sdlwindow, SDL_TOUCH_MOUSEID, 0, locationInView.x, locationInView.y);
/third_party/flutter/skia/third_party/externals/sdl/include/
DSDL_touch.h53 #define SDL_TOUCH_MOUSEID ((Uint32)-1) macro
/third_party/flutter/skia/third_party/externals/sdl/src/video/emscripten/
DSDL_emscriptenevents.c438 SDL_SendMouseMotion(window_data->window, SDL_TOUCH_MOUSEID, 0, x, y); in Emscripten_HandleTouch()
439 … SDL_SendMouseButton(window_data->window, SDL_TOUCH_MOUSEID, SDL_PRESSED, SDL_BUTTON_LEFT); in Emscripten_HandleTouch()
448 SDL_SendMouseMotion(window_data->window, SDL_TOUCH_MOUSEID, 0, x, y); in Emscripten_HandleTouch()
457 … SDL_SendMouseButton(window_data->window, SDL_TOUCH_MOUSEID, SDL_RELEASED, SDL_BUTTON_LEFT); in Emscripten_HandleTouch()
/third_party/flutter/skia/third_party/externals/sdl/src/video/windows/
DSDL_windowsevents.c460 …(GetMessageExtraInfo() & MOUSEEVENTF_FROMTOUCH) == MOUSEEVENTF_FROMTOUCH) ? SDL_TOUCH_MOUSEID : 0); in WIN_WindowProc()
480 …(GetMessageExtraInfo() & MOUSEEVENTF_FROMTOUCH) == MOUSEEVENTF_FROMTOUCH) ? SDL_TOUCH_MOUSEID : 0); in WIN_WindowProc()
/third_party/flutter/skia/third_party/externals/sdl/
DWhatsNew.txt109 * You can distinguish between real mouse and touch events by looking for SDL_TOUCH_MOUSEID in the m…