summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-02-09deprecate --split option and disable browser tests using it in fastcompAlon Zakai
2014-02-09map gl functions to emscripten_ versions to avoid collisions, and to work in ↵Alon Zakai
fastcomp
2014-02-09enable legacy gl emulation in fastcompAlon Zakai
2014-02-09resolve gl aliases directly, simpler for fastcompAlon Zakai
2014-02-09enable test_sdl_audio_beeps in fastcompAlon Zakai
2014-02-09handle unknown shader compilation bugs a little betterAlon Zakai
2014-02-09add -O1 testing to browser.test_cubegeom_procAlon Zakai
2014-02-09move emscripten_GetProcAddress to a C library, so that it is less hackish ↵1.10.3Alon Zakai
and can work in fastcomp
2014-02-08system libs fixesAlon Zakai
2014-02-08add test for getProcAddress that requires we allow collisions in the main ↵Alon Zakai
namespace with gl* functions
2014-02-08move system libs calculation to its own fileAlon Zakai
2014-02-07test for eglGetProcAddressAlon Zakai
2014-02-07TODOAlon Zakai
2014-02-07move deps info to fileAlon Zakai
2014-02-07make sdl malloc hack nicer, and improve back deps trickAlon Zakai
2014-02-07add mechanism to add a C library dependency from a JS library, in emccAlon Zakai
2014-02-07do not include system libs in shared libsAlon Zakai
2014-02-07do not emit i64 support code in shared libsAlon Zakai
2014-02-07comments on --embed-file being inefficient, and recommending --preload-fileAlon Zakai
2014-02-07use emcc in s_x_x tests, to get libcAlon Zakai
2014-02-07improve safe heap tests in asm modeAlon Zakai
2014-02-06Merge pull request #2103 from juj/opt_cmp1.10.2Alon Zakai
Add optimized versions of musl libc string and memory comparison functions.
2014-02-06Merge pull request #2100 from dreamlayers/prevent_hotkeysAlon Zakai
Always preventDefault() on keydown if keypress is not needed.
2014-02-06fix constant generation bug due to 3605f8ccAlon Zakai
2014-02-06warn when rendering without setAnimationFrameAlon Zakai
2014-02-06Fix test_strcmp_uni and test_dlfcn_stacks after previous commit.Jukka Jylänki
2014-02-06use .set on big memcpysAlon Zakai
2014-02-06fuzz -O3 as wellAlon Zakai
2014-02-06add memset testAlon Zakai
2014-02-06Revert strcmp.c to musl v0.9.13 so that the versions in this pull request ↵Jukka Jylänki
match the ones that waywardmonkeys has pushed in earlier.
2014-02-06Add missing memcmp symbol declaration from previous commit.Jukka Jylänki
2014-02-06Add strcoll as well so that library.js does not need to depend on musl libc ↵Jukka Jylänki
code.
2014-02-06Add optimized versions of musl libc string and memory comparison functions.Jukka Jylänki
2014-02-06Merge pull request #2082 from inolen/oes_stdderjuj
don't check to enable OES_standard_derivatives in GL.getSource
2014-02-06add memcpy testAlon Zakai
2014-02-06Always preventDefault() on keydown if keypress is not needed.Boris Gjenero
Some browser shortcut keys activate if event.preventDefault() is not called for the keydown event. This will prevent all such hotkeys when keypress events aren't needed.
2014-02-05allow external variables to be defined as strings in library*.js filesAlon Zakai
2014-02-05add testcase for odd large doublesAlon Zakai
2014-02-05avoid blobs when not necessary for client code modsAlon Zakai
2014-02-05optimize out fround calls on clients that do not support froundAlon Zakai
2014-02-05comment on emscripten_set_main_loop fps settingAlon Zakai
2014-02-05tool to parse unaligned outputAlon Zakai
2014-02-05disable other.test_chunking in fastcomp, since it's irrelevantAlon Zakai
2014-02-05Merge pull request #2097 from dreamlayers/web_audiojuj
Web Audio buffering improvement
2014-02-04disable WARN_UNALIGNED by defaultAlon Zakai
2014-02-04Add myself to AUTHORS.Boris Gjenero
2014-02-04WARN_UNALIGNED option for fastcompAlon Zakai
2014-02-04Improve Web Audio buffering.Boris Gjenero
This changes the Web Audio code to increase buffers according to SDL.audio.numSimultaneouslyQueuedBuffers, which can be changed via Module['SDL_numSimultaneouslyQueuedBuffers']. It becomes more similar to Mozilla Audio Data code. Multiple pending timers are used to improve sound when there is high CPU usage.
2014-02-04Merge pull request #2094 from inolen/lazy_init_surface_bufferAlon Zakai
lazily initialize SDL surface buffer
2014-02-04Merge pull request #2096 from juj/test_minmaxAlon Zakai
Add test_minmax that checks different comparisons when nans and infs are related.