aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-01-14Another test for negative zero and hex floats.Bruce Mitchener
2014-01-14Make lgamma and friends work, add test.Bruce Mitchener
We can't use weak aliases on variables in emscripten, so get rid of __signgam and just use signgam.
2014-01-14Add gamma functions.Bruce Mitchener
2014-01-14Add strtod(), wcstod(), wcstol() and friends.Bruce Mitchener
This implementation of strtod() replaces the old as it implements support for parsing hex constants which is needed by various tests.
2014-01-13Add support for Ninja and Eclipse+Ninja testing in test_cmake.Andreas Bergmeier
2014-01-13add dependencies so code with exceptions (invoke/landingpad) but without an ↵Alon Zakai
actual throw will still pull in the necessary stuff
2014-01-13clean up some more tests/casesAlon Zakai
2014-01-13fix testcase to validate as llvm irAlon Zakai
2014-01-13remove old test that cannot be done in fastcomp, relies on code ↵Alon Zakai
miscompilation in original compiler
2014-01-13Merge pull request #1999 from juj/gl_prepareclientattrAlon Zakai
GL prepareClientAttributes.
2014-01-13Reintroduce liveClientAttributes to optimize the case where GL emulation ↵Jukka Jylänki
code is called with a very large GLImmediate.MAX_TEXTURES size.
2014-01-13Handle negative zero values correctly.Bruce Mitchener
This handles the situation when they're part of a global variable whether it just be a float/double or embedded within a struct. Fixes #1898.
2014-01-13Missing string.h functionality.Bruce Mitchener
2014-01-13Update libcxx to current version.Bruce Mitchener
2014-01-13Update to current libcxxabi for new exception code.Bruce Mitchener
2014-01-12enable another test_cases case in fastcompAlon Zakai
2014-01-12enable test_async_exit in fastcompAlon Zakai
2014-01-12enable test_typed_exceptions in fastcompAlon Zakai
2014-01-12export named globals from fastcomp to jsAlon Zakai
2014-01-11more i64 switch testsAlon Zakai
2014-01-11fix for nativize toolAlon Zakai
2014-01-10Merge pull request #2000 from ensjo/patch-3Alon Zakai
Update AUTHORS
2014-01-10enable more exceptions tests in fastcompAlon Zakai
2014-01-10enable first exceptions test for fastcompAlon Zakai
2014-01-10Update AUTHORSEmerson José Silveira da Costa
Adding my name to the AUTHORS list as instructed by kripken in response to: https://github.com/kripken/emscripten/pull/1996
2014-01-10Merge pull request #1987 from AlexPerrot/glut_numpadAlon Zakai
Adding numpad keycodes to library_glut.js
2014-01-10Optimize GL emulation prepareClientAttributes. Fix issues where the slow ↵Jukka Jylänki
path was not able to handle unaligned source data. Annotate some unsupported cases. Remove liveClientAttributes, which does not seem to be a win in profiles.
2014-01-09prevent calling run more than once; fixes #1992Alon Zakai
2014-01-09support exceptions using fastcompAlon Zakai
2014-01-09Merge pull request #1972 from juj/gl__optsAlon Zakai
GL cleanup and optimizations.
2014-01-09Merge pull request #1990 from inolen/errnooptAlon Zakai
utilize stack member from base Error class
2014-01-09utilize stack member from base Error classAnthony Pesch
2014-01-09Fix preprocessor ifdef in GL emulation library.Jukka Jylänki
2014-01-09Add var GLctx; declaration to GL init to avoid polluting global namespace. ↵Jukka Jylänki
Replace all 'this.xxx' with 'GLImmediate.xxx' when this==GLImmediate, to avoid throwing off Closure minification pass.
2014-01-09Rename GLImmediate.matrix.lib to GLImmediate.matrixLib to not alias with ↵Jukka Jylänki
GLImmediate.matrix array that contains emulated modelview,projection and texture matrices. Restore compressedTexImage2D symbols to be closure-friendly.
2014-01-09Simplify GL emulation matrix stack initialization. Update code after rebase.Jukka Jylänki
2014-01-09Simplify verbose object dereference hierarchy in library_gl.js by storing ↵Jukka Jylänki
global WebGL context in the variable GLctx in addition to Module.ctx.
2014-01-09Simplify verbose object dereference chains in GL library by consistently ↵Jukka Jylänki
using the global name GLImmediate over the GL.immediate form.
2014-01-09Make caching of last bound GL_ARRAY_BUFFER in FFP emulation mode safe and ↵Jukka Jylänki
always enable that optimization.
2014-01-09Optimize glBindBuffer when GL emulation modes are not used. In that case, ↵Jukka Jylänki
currently bound buffers do not need to be tracked.
2014-01-09Optimize glEnableClientState by avoiding it to be called with different ↵Jukka Jylänki
param count.
2014-01-09Optimize GL FFP emulation layer by omitting redundant glUseProgram for ↵Jukka Jylänki
identical shader programs.
2014-01-09Minor optimization to FFP emulation: Use integers instead of strings as key ↵Jukka Jylänki
to FFP matrix file. This allows using arrays instead of maps to store the file, and avoids unnecessary string operations.
2014-01-09Fix GL emulation problems that caused particles and ground to disappear in ↵Jukka Jylänki
Bananabread demo, caused by previous commit https://github.com/kripken/emscripten/commit/fc5dd62fc359397245aca85b1cc847393ba5858f that only partially tracked the changes to the FFP emulation state.
2014-01-08fix relooper compiler warningsAlon Zakai
2014-01-08verify imul correctness, workaround for webkit bug 126345; closes #1991Alon Zakai
2014-01-08do minified name generation in js-optimizer.js, so that we have no more ↵Alon Zakai
fixed limit on the # of minified names
2014-01-08fix and enable other.test_simd on fastcompAlon Zakai
2014-01-08enable simd tests in fastcompAlon Zakai
2014-01-08fixing indentationAlexPerrot