## page was renamed from SDL_GetTouch #pragma section-numbers off #pragma camelcase off || DRAFT|| ##*^*^*^*^*See http://wiki.libsdl.org/moin.cgi/SGFunctions for details on editing this page*^*^*^*^* = SDL_GetTouchFinger = Use this function to get the finger object for specified touch device ID and finger index. <> == Syntax == {{{#!highlight cpp SDL_Finger* SDL_GetTouchFinger(SDL_TouchID touchID, int index) }}} == Function Parameters == ||'''touchID'''||the ID of the requested touch device|| ||'''index'''||the index of the requested finger|| == Return Value == Returns a pointer to the [[SDL_Finger]] object or NULL if no object at the given ID and index could be found. == Code Examples == {{{#!highlight cpp You can add your code example here }}} == Remarks == The returned resource is owned by SDL and should not be deallocated. == Related Functions == .[[SDL_RecordGesture]] ---- [[CategoryAPI]], [[CategoryEvents]] ##See the Style Guide for instructions on editing the footer.