Searched refs:touchID (Results 1 – 4 of 4) sorted by relevance
/AliOS-Things-master/components/SDL2/include/ |
A D | SDL_touch.h | 82 extern DECLSPEC SDL_TouchDeviceType SDLCALL SDL_GetTouchDeviceType(SDL_TouchID touchID); 87 extern DECLSPEC int SDLCALL SDL_GetNumTouchFingers(SDL_TouchID touchID); 92 extern DECLSPEC SDL_Finger * SDLCALL SDL_GetTouchFinger(SDL_TouchID touchID, int index);
|
/AliOS-Things-master/components/SDL2/src/events/ |
A D | SDL_touch.c | 131 SDL_GetNumTouchFingers(SDL_TouchID touchID) in SDL_GetNumTouchFingers() argument 133 SDL_Touch *touch = SDL_GetTouch(touchID); in SDL_GetNumTouchFingers() 141 SDL_GetTouchFinger(SDL_TouchID touchID, int index) in SDL_GetTouchFinger() argument 143 SDL_Touch *touch = SDL_GetTouch(touchID); in SDL_GetTouchFinger() 155 SDL_AddTouch(SDL_TouchID touchID, SDL_TouchDeviceType type, const char *name) in SDL_AddTouch() argument 160 index = SDL_GetTouchIndex(touchID); in SDL_AddTouch() 184 SDL_touchDevices[index]->id = touchID; in SDL_AddTouch() 192 SDL_GestureAddTouch(touchID); in SDL_AddTouch()
|
/AliOS-Things-master/components/SDL2/docs/ |
A D | README-touch.md | 58 SDL_GetNumTouchFingers(touchID) may be used to get the number of fingers currently down on the devi… 67 To get a SDL_Finger, call SDL_GetTouchFinger(SDL_TouchID touchID, int index), where touchID is a SD…
|
/AliOS-Things-master/components/SDL2/src/video/cocoa/ |
A D | SDL_cocoawindow.m | 1161 …const SDL_TouchID touchID = istrackpad ? SDL_MOUSE_TOUCHID : (SDL_TouchID)(intptr_t)[[touches anyO… 1170 int numFingers = SDL_GetNumTouchFingers(touchID); 1173 SDL_Finger* finger = SDL_GetTouchFinger(touchID, numFingers); 1180 SDL_SendTouch(touchID, finger->id, window, SDL_FALSE, 0, 0, 0);
|
Completed in 9 milliseconds