SDL_GetTouchFingers

Get a list of active fingers for a given touch device.

extern (C) nothrow @nogc extern
SDL_GetTouchFingers

Parameters

touchID SDL_TouchID

the ID of a touch device.

count int*

a pointer filled in with the number of fingers returned, can be null.

Return Value

Type: SDL_Finger**

A null terminated array of SDL_Finger pointers or null on failure; call SDL_GetError for more information. This is a single allocation that should be freed with SDL_free when it is no longer needed.

Meta