Age | Commit message (Collapse) | Author |
|
emscripten_SDL_SetEventHandler to reflect that this is our extension, and add comments.
|
|
This is not in the official API but it is needed for Mozilla
Persona, which makes sure an event handler is on the stack when
`navigator.id.request()` is called.
Using the standard SDL api, this can never be the case because an SDL
app retrieves events from SDL’s event queue independently of when
those events are added to the queue (through event handlers that SDL
itself registers).
With this additional call, apps can receive events directly in
response to an actual event handler which will still be on the stack
when the event is handled by the SDL-based application.
|
|
1. Timestamps
2. TouchID (the Device ID)
As inline with the SDL spec, we will pass a touch ID of
`SDL_TOUCH_MOUSEID` for touch events that are simulated by the
mouse so games can rely solely on touch events if they like.
Includes the SDL2 Copyright notice on the headers that contain SDL2
content.
Includes a fix to SDL_PeepEvents.
|
|
With the Emscripten toolchain, we can make clang do more of what we need
directly rather than in the wrapper scripts.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|