summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-10-02Merge pull request #1686 from juj/icase_vfsAlon Zakai
Icase vfs
2013-10-02Fix the handling of uniform arrays in the GL interop layer. In GL, arrays of ↵Jukka Jylänki
uniforms need to have consecutive locations, i.e. array[x] is at location array[0] + x. The uniform mapping table mechanism in library_gl.js did not take into account that user could do int loc = getUniformLocation("array[0]") and then call glUniform3fv(loc+2, data). In the fix, uniforms are mapped so that arrays will be guaranteed to get consecutive locations.
2013-10-02Add -s CASE_INSENSITIVE_FS=1 linker option to allow VFS to lookup files in ↵Jukka Jylänki
case-insensitive mode.
2013-10-01make function table emitting nicerAlon Zakai
2013-10-01optimize indexize/blockaddrsize in emscripten.pyAlon Zakai
2013-10-01optimize asm function table emittingAlon Zakai
2013-10-01fix C_STRUCT usage in sdlAlon Zakai
2013-10-01disable some recently-changed tests in modes where they need inline js or emccAlon Zakai
2013-10-01test runner commentAlon Zakai
2013-10-01Break up mkstemp impl to provide mktemp impl.Bruce Mitchener
The libcxx test suite wants mktemp(), so provide it by pulling out some of the internals of mkstemp().
2013-09-30update unistd tests to run only on nodeAlon Zakai
2013-09-30run test_fs_nodefs_rw only in nodeAlon Zakai
2013-09-30fix other.test_static_linkAlon Zakai
2013-09-30update test_outlineAlon Zakai
2013-09-30fix sanity.test_emcc_caching (we now have a cache dir earlier on)Alon Zakai
2013-09-30Merge branch 'incoming' of github.com:ngld/emscripten into incoming1.6.4Alon Zakai
Conflicts: AUTHORS src/library_sdl.js tools/shared.py
2013-09-30add tests for GLUT mouse wheel eventsAntoine Lambert
2013-09-30add mouse wheel events support in GLUT libraryAntoine Lambert
2013-09-30add myself in AUTHORS fileAntoine Lambert
2013-09-29 - append to Building.COMPILER_TEST_OPTS for unistd testsAnthony Pesch
2013-09-29Merge pull request #1601 from inolen/idbfsAlon Zakai
NODEFS and IDBFS support
2013-09-29Add Marcos Scriven to list of authorsMarcos Scriven
2013-09-29Debug statement fails when using specific LLVM opts rather than an integer levelMarcos Scriven
2013-09-29 - added basic nodefs r/w testAnthony Pesch
2013-09-29 - added test for FS.syncfs functionalityAnthony Pesch
2013-09-27make sure to only fast-path stuff we expectAlon Zakai
2013-09-27improve intertyper profilerAlon Zakai
2013-09-27clean up intertyper paths forkAlon Zakai
2013-09-27fix load fast path regexpAlon Zakai
2013-09-27better relooper load errorAlon Zakai
2013-09-27restructure fast paths code flowAlon Zakai
2013-09-27fast-path simple loadsAlon Zakai
2013-09-27fix fast path regexpAlon Zakai
2013-09-27fast-path simple gepsAlon Zakai
2013-09-27intertyper fast paths setup and proof of conceptAlon Zakai
2013-09-27debugging stuffAlon Zakai
2013-09-27improve processMathOp quotingAlon Zakai
2013-09-27better check for when things need quotingAlon Zakai
2013-09-27=== in isLocalVarAlon Zakai
2013-09-27- updated several unistd tests to test against NODEFSAnthony Pesch
2013-09-27 - added idbfs and nodefsAnthony Pesch
- minor coding convention fixes
2013-09-27 - made chdir use FS.chdirAnthony Pesch
- changed direct references to FS.currentPath to use FS.cwd() - fixed mountpoint resolving in mount - added async FS.syncfs
2013-09-26intertyper profilerAlon Zakai
2013-09-26optimize parseLLVMStringAlon Zakai
2013-09-26add total time to html compiler phaseAlon Zakai
2013-09-26optimize makeSignOpAlon Zakai
2013-09-26hackish optimization for pre processing of heap inits, avoid pure numeric ↵Alon Zakai
strings
2013-09-26fix getFastValue regressionAlon Zakai
2013-09-26remove makeGetPos and part of noNeedFirstAlon Zakai
2013-09-26add slack to test_sdl_canvas_alphaAlon Zakai