Searched refs:tfinger (Results 1 – 7 of 7) sorted by relevance
/third_party/flutter/skia/third_party/externals/sdl/src/events/ |
D | SDL_touch.c | 241 event.tfinger.type = SDL_FINGERDOWN; in SDL_SendTouch() 242 event.tfinger.touchId = id; in SDL_SendTouch() 243 event.tfinger.fingerId = fingerid; in SDL_SendTouch() 244 event.tfinger.x = x; in SDL_SendTouch() 245 event.tfinger.y = y; in SDL_SendTouch() 246 event.tfinger.dx = 0; in SDL_SendTouch() 247 event.tfinger.dy = 0; in SDL_SendTouch() 248 event.tfinger.pressure = pressure; in SDL_SendTouch() 260 event.tfinger.type = SDL_FINGERUP; in SDL_SendTouch() 261 event.tfinger.touchId = id; in SDL_SendTouch() [all …]
|
D | SDL_gesture.c | 526 SDL_GestureTouch* inTouch = SDL_GetGestureTouch(event->tfinger.touchId); in SDL_GestureProcessEvent() 531 x = event->tfinger.x; in SDL_GestureProcessEvent() 532 y = event->tfinger.y; in SDL_GestureProcessEvent() 583 float dx = event->tfinger.dx; in SDL_GestureProcessEvent() 584 float dy = event->tfinger.dy; in SDL_GestureProcessEvent()
|
/third_party/flutter/skia/third_party/externals/sdl/test/ |
D | testgesture.c | 139 x = event->tfinger.x; in DrawScreen() 140 y = event->tfinger.y; in DrawScreen() 143 c = colors[event->tfinger.fingerId%7]; in DrawScreen() 228 SDL_Log("Finger: %"SDL_PRIs64",x: %f, y: %f",event.tfinger.fingerId, in loop() 229 event.tfinger.x,event.tfinger.y); in loop() 235 event.tfinger.fingerId,event.tfinger.x,event.tfinger.y); in loop() 241 event.tfinger.fingerId,event.tfinger.x,event.tfinger.y); in loop()
|
/third_party/flutter/skia/tools/sk_app/ios/ |
D | Window_ios.cpp | 199 this->onTouch(event.tfinger.fingerId, InputState::kDown, in handleEvent() 200 (int)(this->width()*event.tfinger.x), in handleEvent() 201 (int)(this->height()*event.tfinger.y)); in handleEvent() 205 this->onTouch(event.tfinger.fingerId, InputState::kUp, in handleEvent() 206 (int)(this->width()*event.tfinger.x), in handleEvent() 207 (int)(this->height()*event.tfinger.y)); in handleEvent() 211 this->onTouch(event.tfinger.fingerId, InputState::kMove, in handleEvent() 212 (int)(this->width()*event.tfinger.x), in handleEvent() 213 (int)(this->height()*event.tfinger.y)); in handleEvent()
|
/third_party/flutter/skia/third_party/externals/sdl/docs/ |
D | README-touch.md | 23 * event.tfinger.touchId - the Id of the touch device. 24 * event.tfinger.fingerId - the Id of the finger which just went down. 25 * event.tfinger.x - the x coordinate of the touch (0..1) 26 * event.tfinger.y - the y coordinate of the touch (0..1) 27 * event.tfinger.pressure - the pressure of the touch (0..1) 33 * event.tfinger.dx - change in x coordinate during this motion event. 34 * event.tfinger.dy - change in y coordinate during this motion event. 62 float x = event.tfinger.x; 63 float y = event.tfinger.y;
|
/third_party/flutter/skia/third_party/externals/sdl/src/test/ |
D | SDL_test_common.c | 1207 (long) event->tfinger.touchId, in SDLTest_PrintEvent() 1208 (long) event->tfinger.fingerId, in SDLTest_PrintEvent() 1209 event->tfinger.x, event->tfinger.y, in SDLTest_PrintEvent() 1210 event->tfinger.dx, event->tfinger.dy, event->tfinger.pressure); in SDLTest_PrintEvent()
|
/third_party/flutter/skia/third_party/externals/sdl/include/ |
D | SDL_events.h | 548 SDL_TouchFingerEvent tfinger; /**< Touch finger event data */ member
|