Home
last modified time | relevance | path

Searched refs:SDL_TouchID (Results 1 – 21 of 21) sorted by relevance

/AliOS-Things-master/components/SDL2/src/events/
A DSDL_touch_c.h29 SDL_TouchID id;
41 extern int SDL_AddTouch(SDL_TouchID id, SDL_TouchDeviceType type, const char *name);
44 extern SDL_Touch *SDL_GetTouch(SDL_TouchID id);
47 extern int SDL_SendTouch(SDL_TouchID id, SDL_FingerID fingerid, SDL_Window * window,
51 extern int SDL_SendTouchMotion(SDL_TouchID id, SDL_FingerID fingerid, SDL_Window * window,
55 extern void SDL_DelTouch(SDL_TouchID id);
A DSDL_touch.c41 static SDL_TouchID track_touchid;
57 SDL_TouchID
68 SDL_GetTouchIndex(SDL_TouchID id) in SDL_GetTouchIndex()
83 SDL_GetTouch(SDL_TouchID id) in SDL_GetTouch()
99 SDL_GetTouchDeviceType(SDL_TouchID id) in SDL_GetTouchDeviceType()
131 SDL_GetNumTouchFingers(SDL_TouchID touchID) in SDL_GetNumTouchFingers()
141 SDL_GetTouchFinger(SDL_TouchID touchID, int index) in SDL_GetTouchFinger()
155 SDL_AddTouch(SDL_TouchID touchID, SDL_TouchDeviceType type, const char *name) in SDL_AddTouch()
242 SDL_SendTouch(SDL_TouchID id, SDL_FingerID fingerid, SDL_Window * window, in SDL_SendTouch()
356 SDL_SendTouchMotion(SDL_TouchID id, SDL_FingerID fingerid, SDL_Window * window, in SDL_SendTouchMotion()
[all …]
A DSDL_gesture_c.h26 extern int SDL_GestureAddTouch(SDL_TouchID touchId);
27 extern int SDL_GestureDelTouch(SDL_TouchID touchId);
A DSDL_gesture.c65 SDL_TouchID id;
92 int SDL_RecordGesture(SDL_TouchID touchId) in SDL_RecordGesture()
229 int SDL_LoadDollarTemplates(SDL_TouchID touchId, SDL_RWops *src) in SDL_LoadDollarTemplates()
454 int SDL_GestureAddTouch(SDL_TouchID touchId) in SDL_GestureAddTouch()
472 int SDL_GestureDelTouch(SDL_TouchID touchId) in SDL_GestureDelTouch()
494 static SDL_GestureTouch * SDL_GetGestureTouch(SDL_TouchID id) in SDL_GetGestureTouch()
/AliOS-Things-master/components/SDL2/include/
A DSDL_touch.h41 typedef Sint64 SDL_TouchID; typedef
77 extern DECLSPEC SDL_TouchID SDLCALL SDL_GetTouchDevice(int index);
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);
A DSDL_gesture.h53 extern DECLSPEC int SDLCALL SDL_RecordGesture(SDL_TouchID touchId);
76 extern DECLSPEC int SDLCALL SDL_LoadDollarTemplates(SDL_TouchID touchId, SDL_RWops *src);
A DSDL_events.h440 SDL_TouchID touchId; /**< The touch device id */
458 SDL_TouchID touchId; /**< The touch device id */
475 SDL_TouchID touchId; /**< The touch device id */
/AliOS-Things-master/components/SDL2/src/video/android/
A DSDL_androidtouch.c54 SDL_TouchID touchDeviceId = 0; in Android_OnTouch()
61 touchDeviceId = (SDL_TouchID)touch_device_id_in; in Android_OnTouch()
/AliOS-Things-master/components/SDL2/docs/
A DREADME-touch.md50 To get a SDL_TouchID call SDL_GetTouchDevice(int index).
51 This returns a SDL_TouchID.
56 A SDL_TouchID may be used to get pointers to SDL_Finger.
67 To get a SDL_Finger, call SDL_GetTouchFinger(SDL_TouchID touchID, int index), where touchID is a SD…
A DREADME-gesture.md12 SDL_RecordGesture(SDL_TouchID touchId), where touchId is the id of the touch device you wish to rec…
/AliOS-Things-master/components/SDL2/src/video/uikit/
A DSDL_uikitview.m47 SDL_TouchID directTouchId;
48 SDL_TouchID indirectTouchId;
196 - (SDL_TouchID)touchIdForType:(SDL_TouchDeviceType)type
268 SDL_TouchID touchId = [self touchIdForType:touchType];
321 SDL_TouchID touchId = [self touchIdForType:touchType];
357 SDL_TouchID touchId = [self touchIdForType:touchType];
/AliOS-Things-master/components/SDL2/src/video/wayland/
A DSDL_waylandtouch.c94 SDL_TouchID deviceId = 1; in touch_handle_touch()
A DSDL_waylandevents.c95 SDL_TouchID id;
112 touch_add(SDL_TouchID id, float x, float y, struct wl_surface *surface) in touch_add()
134 touch_update(SDL_TouchID id, float x, float y) in touch_update()
149 touch_del(SDL_TouchID id, float* x, float* y, struct wl_surface **surface) in touch_del()
183 touch_surface(SDL_TouchID id) in touch_surface()
/AliOS-Things-master/components/SDL2/src/video/winrt/
A DSDL_winrtpointerinput.cpp40 static SDL_TouchID WINRT_TouchID = 1;
/AliOS-Things-master/components/SDL2/src/video/x11/
A DSDL_x11xinput2.c273 SDL_TouchID touchId; in X11_InitXinput2Multitouch()
/AliOS-Things-master/components/SDL2/test/
A Dtestgesture.c190 const SDL_TouchID id = SDL_GetTouchDevice(i); in loop()
/AliOS-Things-master/components/SDL2/src/dynapi/
A DSDL_dynapi_procs.h186 SDL_DYNAPI_PROC(int,SDL_RecordGesture,(SDL_TouchID a),(a),return)
189 SDL_DYNAPI_PROC(int,SDL_LoadDollarTemplates,(SDL_TouchID a, SDL_RWops *b),(a,b),return)
519 SDL_DYNAPI_PROC(SDL_TouchID,SDL_GetTouchDevice,(int a),(a),return)
520 SDL_DYNAPI_PROC(int,SDL_GetNumTouchFingers,(SDL_TouchID a),(a),return)
521 SDL_DYNAPI_PROC(SDL_Finger*,SDL_GetTouchFinger,(SDL_TouchID a, int b),(a,b),return)
769 SDL_DYNAPI_PROC(SDL_TouchDeviceType,SDL_GetTouchDeviceType,(SDL_TouchID a),(a),return)
/AliOS-Things-master/components/SDL2/src/video/windows/
A DSDL_windowsevents.c1005 const SDL_TouchID touchId = (SDL_TouchID)((size_t)input->hSource); in WIN_WindowProc()
/AliOS-Things-master/components/SDL2/src/video/emscripten/
A DSDL_emscriptenevents.c439 SDL_TouchID deviceId = 1; in Emscripten_HandleTouch()
/AliOS-Things-master/components/SDL2/src/video/cocoa/
A DSDL_cocoawindow.m1161 …const SDL_TouchID touchID = istrackpad ? SDL_MOUSE_TOUCHID : (SDL_TouchID)(intptr_t)[[touches anyO…
1212 …const SDL_TouchID touchId = istrackpad ? SDL_MOUSE_TOUCHID : (SDL_TouchID)(intptr_t)[touch device];
/AliOS-Things-master/components/SDL2/src/core/android/
A DSDL_android.c892 SDL_AddTouch((SDL_TouchID) touchId, SDL_TOUCH_DEVICE_DIRECT, utfname); in SDL_JAVA_INTERFACE()

Completed in 33 milliseconds