Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-09-01 | misc in.h and SDL joystick stubs | Anthony Pesch | |
2013-08-27 | Merge pull request #1564 from inolen/sdl_fullscreen_fix | Alon Zakai | |
support SDL_WM_ToggleFullScreen when initiated by key input | |||
2013-08-27 | support SDL_WM_ToggleFullScreen when initiated by key input | Anthony Pesch | |
2013-08-26 | Merge pull request #1507 from ToadKing/sdl-alpha-keys | Alon Zakai | |
SDL alpha keys fix | |||
2013-08-19 | Merge pull request #1524 from inolen/sdl_unicode | Alon Zakai | |
pass in modified character to SDL keydown events | |||
2013-08-16 | capture charCode field of keypress events to backfill keydown events | Anthony Pesch | |
2013-08-16 | simplify and automate GetProcAddress logic, and move it out of GL emulation | Alon Zakai | |
2013-08-14 | Merge pull request #1517 from inolen/sdl_surface_size | Alon Zakai | |
SDL_Surface size fix | |||
2013-08-14 | fixed SDL_Surface struct size | Anthony Pesch | |
2013-08-14 | added SDL_AudioDriverName | Anthony Pesch | |
2013-08-12 | fix alpha keycodes in handleEvent | ToadKing | |
2013-08-12 | split out handling SDL events from making C events for them, to make ↵ | Alon Zakai | |
SDL_PumpEvents work; fixes #1419 | |||
2013-08-08 | converted Object.defineProperty calls to use Object.defineProperties in ↵ | Anthony Pesch | |
order to make closure happy | |||
2013-08-08 | Merge pull request #1470 from inolen/preload_path_fixes | Alon Zakai | |
file preload path fixes | |||
2013-08-07 | updated bad function formatting | Anthony Pesch | |
2013-08-06 | store preloaded images by their absolute path | Anthony Pesch | |
2013-07-31 | support for stb-image | Alon Zakai | |
2013-07-26 | Merge pull request #1393 from fhd/sdl-surface-refcount | Alon Zakai | |
Implement SDL_Surface refcounting | |||
2013-07-25 | Don't leak the last surface and improve SDL_surface refcount test | Felix H. Dahlke | |
2013-07-24 | Merge pull request #1386 from michaeljbishop/sdl_rwops | Alon Zakai | |
Add support for `SDL_RWFromConstMem()` for .ogg files. | |||
2013-07-22 | Made getMimetype() a public method of the Browser module and used it | Michael J. Bishop | |
inside the SDL module. | |||
2013-07-22 | Added mime type information to SDL_rwops in `SDL_RWFromFile` as a hint | Michael J. Bishop | |
to processing down the line. Changed the `Pointer_stringify()` call to occur in `SDL_RWFromFile` instead of downstream which makes more sense. Cleaned up formatting. | |||
2013-07-19 | Formatting cleanup. | Michael J. Bishop | |
2013-07-19 | handle out param in SDL_GetKeyboardState; fixes #1404 | Alon Zakai | |
2013-07-17 | Fix SDL_surface refcount test and initialise refcount to 1 | Felix H. Dahlke | |
2013-07-17 | Implement SDL_Surface refcounting | Felix H. Dahlke | |
2013-07-15 | Made sure that `IMG_Load_RW` is also aware that it should receive | Michael J. Bishop | |
`SDL_RWops *` generated from `SDL_RWFromFile()`. | |||
2013-07-15 | Updated with kripken's suggestions. | Michael J. Bishop | |
2013-07-15 | Merge pull request #1385 from fhd/zoom-if-360 | Alon Zakai | |
Just zoom the surface if the angle is divisible by 360 | |||
2013-07-15 | Added support for loading .ogg audio files using a combination of | Michael J. Bishop | |
`SDL_RWFromConstMem()` + `Mix_LoadMUS/WAV_RW()`. `SDL_RWFromConstMem()` now returns an opaque reference that corresponds to a Javascript-side object which retains the information passed in. The same for `SDL_RWFromFile()` but it saves different information. When `Mix_LoadMUS/WAV_RW()` is called, it now expects a reference to one of those Javascript-side objects and from it, either uses a pre-loaded Audio, or reads bytes from the file-system to make one, or uses the bytes originally passed into `SDL_RWFromConstMem()` to create one. Note that with this change you can now simply embed sound files in your app, you do not need to preload them. | |||
2013-07-16 | Just zoom the surface if the angle is divisible by 360 | Felix H. Dahlke | |
2013-07-16 | Implement TTF_FontHeight | Felix H. Dahlke | |
2013-07-12 | only push proper canvases to canvas pool | Alon Zakai | |
2013-07-11 | Merge pull request #1354 from fhd/fix-gc-pauses | Alon Zakai | |
Fix GC pauses by reusing canvas elements | |||
2013-07-11 | Add missing braces | Felix H. Dahlke | |
2013-07-11 | Document canvasPool | Felix H. Dahlke | |
2013-07-10 | Merge pull request #1363 from dtc/sdl-touch | Alon Zakai | |
Add basic touch support that translates to mouse events. | |||
2013-07-11 | Update the AUTHORS file, and address some code style issues. | Douglas T. Crosher | |
2013-07-10 | Add comment. | Jez Ng | |
2013-07-10 | Cast signedness in library_SDL functions. | Jez Ng | |
2013-07-10 | Wrap gfx helpers in a $SDL_gfx object. | Jez Ng | |
2013-07-10 | Add (failing) test for gfx primitives. | Jez Ng | |
2013-07-10 | Avoid noisy error logs. | Jez Ng | |
2013-07-10 | Add workaround for FF. | Jez Ng | |
2013-07-10 | Implement ellipse drawing and refactor rect code. | Jez Ng | |
2013-07-10 | Fix negative surface zooming. | Jez Ng | |
2013-07-10 | Add basic touch support that translates to mouse events. | Douglas T. Crosher | |
2013-07-09 | Bunch of changes to support Syobon Action. | Jez Ng | |
2013-07-08 | Fix GC pauses by reusing canvas elements | Felix H. Dahlke | |
2013-06-24 | Removed unnecessary "audio.paused = " statements. | Michael J. Bishop | |