Moved Multi finger gesture recognition into the library.

This commit is contained in:
Jim Grandpre 2010-07-07 04:13:08 -07:00
parent af9c689b21
commit 874300f89c
10 changed files with 945 additions and 2 deletions

View file

@ -493,6 +493,10 @@ SDL_PushEvent(SDL_Event * event)
if (SDL_PeepEvents(event, 1, SDL_ADDEVENT, 0, 0) <= 0) {
return -1;
}
SDL_GestureProcessEvent(event);
return 1;
}