aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2014-01-16fix strnlen input of size, which should be unsignedAlon Zakai
2014-01-16add __h_errno; fixes #2013Alon Zakai
2014-01-16don't override Module.print and printErr if the user specified themAlon Zakai
2014-01-16enable a form of safe heap in asm, using js optimizer pass to ensure full ↵Alon Zakai
coverage and support for fastcomp
2014-01-15re-merge split blocks in multiples1.9.2Alon Zakai
2014-01-15share block ids in relooper among split blocks1.9.1Alon Zakai
2014-01-15fix Math_floor coercion in unrecommended codegen modes (no roundings ↵Alon Zakai
correction or imprecise i64)
2014-01-15Optimize FFP GL shader generation in the case when GL_COMBINE is used. This ↵Jukka Jylänki
merges duplicate texture loads into one and avoids a redundant * 1.0 op.
2014-01-15Optimize rendering from client-side memory by maintaining a set of ↵Jukka Jylänki
doublebuffered VBOs. This improves performance by reducing CPU-GPU pipeline stalls.
2014-01-15Further optimize FFP GL getRenderer() operation.Jukka Jylänki
2014-01-14fix double start bug #1992 in browser as wellAlon Zakai
2014-01-14Add GLEW 1.10.0 emulationJari Vetoniemi
Includes library_glew.js that stubs the init functions, but also provides the other functions. GL/glew.h is now changed to work with GLEW_EXT_foo_bar constants, some missing constants that are in GLEW 1.10.0 are also provided. Otherwise it still uses SDL_opengl.h to provide function definitions and other constants. Linaro's GLEW (glew-oes) is also supported to some degree to make it easier to get ES1 and ES2 software using it running. What it lacks: - Some constants and function declarations that are in GLEW 1.10.0 might be missing. - The real glew-es fork also includes normal GL constants and function pointers, this does not. Tests ran: - tests/runner.py browser Real world example using this code (and upcomming glfw3 port) can be found here: http://cloudef.eu/glhck http://cloudef.eu/glhck/qb.html
2014-01-13add fputwc, which enables wprintf1.8.9Alon Zakai
2014-01-13Merge branch 'incoming' of github.com:kripken/emscripten into incoming1.8.8Alon Zakai
conflicts: tests/test_core.py tools/shared.py
2014-01-13Merge pull request #2004 from waywardmonkeys/updatesAlon Zakai
Updates
2014-01-13unset precision if set to -1Alon Zakai
2014-01-13handle precision -1 in printf .*Alon Zakai
2014-01-14Fix GL emulation regression with VBO data caused by commit ↵Jukka Jylänki
https://github.com/kripken/emscripten/commit/4e3c1b3e862ffd8e324cd1f24ed84692bd50a83b#commitcomment-5056244
2014-01-13avoid leaks on multiple calls to relooper MakeOutputBufferAlon Zakai
2014-01-13allow relooper to manager its own output buffer, to avoid fixed output limits1.8.7Alon Zakai
2014-01-14Add lots of math 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 dependencies so code with exceptions (invoke/landingpad) but without an ↵Alon Zakai
actual throw will still pull in the necessary stuff
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-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-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-08fixing indentationAlexPerrot
2014-01-07notice simd signal from fastcompAlon Zakai
2014-01-07update other.test_simd test for llvm 3.3 and 3.4Alon Zakai
2014-01-07Merge branch 'incoming' into llvm-3.41.8.6Alon Zakai
Conflicts: tests/test_benchmark.py tools/shared.py