aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-01-06check clang version before applying version-specific changes, like disabling ↵1.8.5Alon Zakai
vectorization in llvm 3.4
2014-01-06fix poppler configure for clang 3.4Alon Zakai
2014-01-06apply EMMAKEN_CFLAGS directly to commandline, not just to clang calls, so ↵Alon Zakai
that we can parse it in emcc and e.g. disable vectorization as necessary
2014-01-06refactor vector disabling codeAlon Zakai
2014-01-06ignore new readonly attribute in llvm 3.4Alon Zakai
2014-01-06disable vectorization which llvm 3.4 has on by default1.8.4Alon Zakai
2014-01-06ignore new readnone attribute in llvm 3.4Alon Zakai
2014-01-06other.test_emcc fixes for fastcompAlon Zakai
2014-01-06Merge pull request #1982 from floooh/incomingAlon Zakai
Added missing Return and Tab keycode support to library_glut.js
2014-01-06Added myself to AUTHORSfloooh
2014-01-06Merge pull request #1978 from coolwanglu/prAlon Zakai
correct annotation for closure
2014-01-06Merge pull request #1980 from coolwanglu/pr_cleanAlon Zakai
tokenize() does not accept a 2nd parameter
2014-01-06Added support for Return and Backspace key to glutfloooh
2014-01-06tokenize() does not accept a 2nd parameterLu Wang
2014-01-05correct annotation for closureLu Wang
2014-01-04fix function type in test_openal_buffers for asmAlon Zakai
2014-01-04fix some relooper compiler warnings and update reftests for previous fixes1.8.3Alon Zakai
2014-01-04todo about async script tagsAlon Zakai
2014-01-04specify (void) as the arguments in webgl_context_attributes test, to avoid ↵Alon Zakai
confusion with varargs by clang
2014-01-03Merge pull request #1967 from coolwanglu/pr_cleanAlon Zakai
clean extra arg of JSify
2014-01-03Merge pull request #1941 from onnoj/incomingAlon Zakai
Added workaround for window.scrollX compat.
2014-01-03optimize main loop in SDL_UnlockSurface to avoid a branchAlon Zakai
2014-01-03Merge pull request #1973 from jvilk/sdl_fixAlon Zakai
[SDL] Actually fix SDL_UnlockSurface in IE10/IE11.
2014-01-03disable/update various browser tests for fastcompAlon Zakai
2014-01-03[SDL] Actually fix SDL_UnlockSurface in IE10/IE11.John Vilk
The previous revision did not copy over pixel data properly. This time, I have reverted the IE path to the code used in this method prior to the breaking change, and have tested it with JSMESS.
2014-01-03fix benchmark suite bug where args got appendedAlon Zakai
2014-01-03disable named globals test in fastcompAlon Zakai
2014-01-03convert test_sdl_canvas to btestAlon Zakai
2014-01-03Merge pull request #1971 from jvilk/sdl_fixesAlon Zakai
[SDL] Fixing SDL_UnlockSurface in IE10/IE11
2014-01-03release 1.8.21.8.2Alon Zakai
2014-01-03[SDL] Fixing SDL_UnlockSurface in IE10/IE11.John Vilk
Previously, just calling SDL_UnlockSurface in IE10/IE11 would throw an exception, since Emscripten assumed that the ImageData's `data` property was Uint8ClampedArray, which has a backing buffer. IE10/IE11 still uses the deprecated CanvasPixelArray, which does not have a backing buffer property: https://developer.mozilla.org/en-US/docs/Web/API/CanvasPixelArray I've added an additional path to SDL_UnlockSurface for these browsers.
2014-01-03disable fc in default benchmarksAlon Zakai
2014-01-03fix output in glGetFramebufferAttachmentParameterivAlon Zakai
2014-01-03properly handle getParameter returning null when it means a null object ↵Alon Zakai
(e.g., no buffer is bound) and not an invalid name
2014-01-03disable test_emscripten_log in spidermonkey due to breakage; issue #1970Alon Zakai
2014-01-03make sure to give Ids to split blocks in relooper1.8.1Alon Zakai
2014-01-03Linux fixes to emrun. Don't fail if glxinfo is not installed, and look for ↵Jukka Jylänki
Chrome in 'google-chrome' executable name as well. Don't fail if browser is not found.
2014-01-03do not assume callee.caller always existsAlon Zakai
2014-01-03Update Emscripten CMake toolchain default flags to include -O2 also in ↵Jukka Jylänki
compile pass, not just at link time, and add -g to CMake RelWithDebInfo builds.
2014-01-03Update library_browser.jsonnoj
2014-01-03clean extra arg of JSifyLu Wang
2014-01-02adjust TOTAL_MEMORY at runtime, to take into account last minute changes to ↵Alon Zakai
Module.TOTAL_MEMORY
2014-01-02deprecate compressionAlon Zakai
2014-01-02support #include x.js in our preprocessed js sourcesAlon Zakai
2014-01-02Merge pull request #1966 from coolwanglu/pr1Alon Zakai
Clean currExternalFunctions
2014-01-02minor cleanLu Wang
2014-01-02Fixed undefined check.onnoj
Forgot I had to explicitly check the type of variable type to see if it's undefined.
2014-01-02Added comments & assert to scrollX fix.onnoj
Added comments to fix as per @kripken's request. Added an assert too (guarded by ASSERTIONS define)
2014-01-01ensure we add precision in gl emulation to both fragment and vertex shadersAlon Zakai
2014-01-01fix gl typosAlon Zakai