Searched refs:SDL_Finger (Results 1 – 6 of 6) sorted by relevance
/third_party/flutter/skia/third_party/externals/sdl/src/events/ |
D | SDL_touch.c | 95 SDL_Finger * 115 SDL_Finger * 174 SDL_Finger *finger; in SDL_AddFinger() 177 SDL_Finger **new_fingers; in SDL_AddFinger() 178 …new_fingers = (SDL_Finger **)SDL_realloc(touch->fingers, (touch->max_fingers+1)*sizeof(*touch->fin… in SDL_AddFinger() 183 touch->fingers[touch->max_fingers] = (SDL_Finger *)SDL_malloc(sizeof(*finger)); in SDL_AddFinger() 201 SDL_Finger *temp; in SDL_DelFinger() 220 SDL_Finger *finger; in SDL_SendTouch() 282 SDL_Finger *finger; in SDL_SendTouchMotion()
|
D | SDL_touch_c.h | 32 SDL_Finger** fingers;
|
/third_party/flutter/skia/third_party/externals/sdl/include/ |
D | SDL_touch.h | 44 typedef struct SDL_Finger struct 50 } SDL_Finger; argument 76 extern DECLSPEC SDL_Finger * SDLCALL SDL_GetTouchFinger(SDL_TouchID touchID, int index);
|
/third_party/flutter/skia/third_party/externals/sdl/docs/ |
D | README-touch.md | 45 SDL provides the ability to access the underlying SDL_Finger structures. 56 A SDL_TouchID may be used to get pointers to SDL_Finger. 60 The most common reason to access SDL_Finger is to query the fingers outside the event. In most case… 67 To get a SDL_Finger, call SDL_GetTouchFinger(SDL_TouchID touchID, int index), where touchID is a SD… 68 This returns a SDL_Finger *, or NULL if the finger does not exist, or has been removed. 69 A SDL_Finger is guaranteed to be persistent for the duration of a touch, but it will be de-allocate… 72 A SDL_Finger has the following fields:
|
/third_party/flutter/skia/third_party/externals/sdl/src/dynapi/ |
D | SDL_dynapi_procs.h | 525 SDL_DYNAPI_PROC(SDL_Finger*,SDL_GetTouchFinger,(SDL_TouchID a, int b),(a,b),return)
|
/third_party/flutter/skia/third_party/externals/sdl/src/video/cocoa/ |
D | SDL_cocoawindow.m | 1008 SDL_Finger* finger = SDL_GetTouchFinger(touchID, numFingers);
|