aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2013-07-15Merge pull request #1384 from fhd/ttf-font-heightAlon Zakai
Implemented TTF_FontHeight
2013-07-15Added support for loading .ogg audio files using a combination ofMichael 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-16Just zoom the surface if the angle is divisible by 360Felix H. Dahlke
2013-07-15use high-precision llrint in ta2 onlyAlon Zakai
2013-07-15Merge branch 'self-dlopen' of github.com:int3/emscripten into incomingAlon Zakai
2013-07-16Implement TTF_FontHeightFelix H. Dahlke
2013-07-15Use DLOPEN_SUPPORT instead of LINKABLE to enable self-dlopen.Jez Ng
Also address style feedback.
2013-07-15check for isTerminal on the object of the filesystem entryAlon Zakai
2013-07-15implement llrint properly; fixes #1380Alon Zakai
2013-07-15Implement strptimeSoeren Balko
2013-07-14Merge pull request #1381 from inolen/tty_fixesAlon Zakai
isatty and ttyname fixes
2013-07-14 - moved std stream isTerminal property to object so all streams can seeAnthony Pesch
- made ttyname use isatty to check if fd is tty - hardcoded /dev/tty as tty name is ttyname_r - fixed and changed isatty and ttyname tests to run natively
2013-07-13open should not set EISDIR when opening an existing directory with O_CREATAnthony Pesch
2013-07-13Merge pull request #1374 from inolen/posix_fallocate_fixAlon Zakai
check write permission in posix_fallocate
2013-07-13Merge pull request #1372 from inolen/dirent_fixesAlon Zakai
minor fixes to return codes of closedir, telldir
2013-07-13Merge pull request #1376 from inolen/utime_fixesAlon Zakai
utime fixes
2013-07-13don't check write permissions in utimeAnthony Pesch
2013-07-12check write permission in posix_fallocateAnthony Pesch
2013-07-12Merge pull request #1373 from int3/safari-blobsAlon Zakai
Fix image loading in Safari.
2013-07-12Add bug number to comment.Jez Ng
2013-07-12only push proper canvases to canvas poolAlon Zakai
2013-07-12Simplify ArrayBuffer copy.Jez Ng
2013-07-12Work around Safari image loading bug. Closes #1130.Jez Ng
2013-07-12minor fixes to return codes of closedir, telldirAnthony Pesch
2013-07-12misc ungetc fixesAnthony Pesch
2013-07-11Filter out unnamed_addr globals from symbol table.Jez Ng
2013-07-11Implement self-dlopen.Jez Ng
2013-07-11Merge pull request #1362 from dtc/obj-nameAlon Zakai
Replace the 'scan' function, which maps a WebGL object to anassociated integer id, with a 'name' property stored on the object. The linear scan was rather slow, and as the vector grew in size games were slowing to a few fps.
2013-07-11Merge pull request #1354 from fhd/fix-gc-pausesAlon Zakai
Fix GC pauses by reusing canvas elements
2013-07-11Add missing bracesFelix H. Dahlke
2013-07-11Document canvasPoolFelix H. Dahlke
2013-07-10Merge pull request #1363 from dtc/sdl-touchAlon Zakai
Add basic touch support that translates to mouse events.
2013-07-11glGenTextures: correct the setting of the object name.Douglas T. Crosher
2013-07-11Update the AUTHORS file, and address some code style issues.Douglas T. Crosher
2013-07-10Merge pull request #1364 from int3/syobonAlon Zakai
Bunch of SDL fixes that are needed for running Open Syobon Action.
2013-07-10Add comment.Jez Ng
2013-07-10Cast signedness in library_SDL functions.Jez Ng
2013-07-10Wrap gfx helpers in a $SDL_gfx object.Jez Ng
2013-07-10Add (failing) test for gfx primitives.Jez Ng
2013-07-10Avoid noisy error logs.Jez Ng
2013-07-10Add workaround for FF.Jez Ng
2013-07-10Implement ellipse drawing and refactor rect code.Jez Ng
2013-07-10Fix negative surface zooming.Jez Ng
2013-07-10Add basic touch support that translates to mouse events.Douglas T. Crosher
2013-07-10* Replace the 'scan' function, which maps a WebGL object to anDouglas T. Crosher
associated integer id, with a 'name' property stored on the object. The linear scan was rather slow, and as the vector grew in size games were slowing to a few fps.
2013-07-09Bunch of changes to support Syobon Action.Jez Ng
2013-07-09only remove unneeded arguments based on library sigs for llvm intrinsics ↵Alon Zakai
(which cannot be aliased by user functions)
2013-07-09use |0 to coerce in div/rem, no need for >>>0Alon Zakai
2013-07-08begin work on outliner pass to break up large functions. part 1: aggressive ↵Alon Zakai
variable elimination, to reduce spilling
2013-07-08Fix GC pauses by reusing canvas elementsFelix H. Dahlke