aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-01-16add fnmatch; fixes #20021.9.3Alon Zakai
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-16strengthen test_alloca to check alignmentAlon Zakai
2014-01-16Merge branch 'patch-1' of github.com:sindresorhus/emscripten into incomingAlon Zakai
2014-01-16It's 2014Sindre Sorhus
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-15add todoAlon Zakai
2014-01-15Merge pull request #2016 from rfk/rfk/minify-names-separatelyAlon Zakai
Split name-minification into a separate pass from registerization.
2014-01-16Address review comments.Ryan Kelly
2014-01-15do not track eliminable variables from one switch statement to another, if ↵Alon Zakai
they have any dependencies; fixes #2003
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-15undo unnecessary test disablingAlon Zakai
2014-01-15Merge branch 'incoming'Alon Zakai
2014-01-15release 1.9.01.9.0Alon Zakai
2014-01-15fix Math_floor coercion in unrecommended codegen modes (no roundings ↵Alon Zakai
correction or imprecise i64)
2014-01-15Merge pull request #2021 from juj/gl_combine_shaderAlon Zakai
GL_COMBINE shader.
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-15add musl fputws, fix vswprintf, add testing for fwprintf and swprintf as well1.8.14Alon Zakai
2014-01-15remove musl use of fwritex1.8.13Alon Zakai
2014-01-15Merge pull request #2018 from waywardmonkeys/updates31.8.12Alon Zakai
Updates3
2014-01-15Merge pull request #2019 from juj/evenmore_gl_optsAlon Zakai
Even more gl opts
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-16Split name-minification into a separate pass from registerization.Ryan Kelly
2014-01-15Bump version.Bruce Mitchener
2014-01-15Fill in undefined math symbols.Bruce Mitchener
2014-01-14fix aggressiveVariableElimination bug and add testingAlon Zakai
2014-01-14fix for running js optimizer standaloneAlon Zakai
2014-01-14fix wprintf-related bug that bit fastcomp1.8.11Alon Zakai
2014-01-14disable test_simd3 due to breakageAlon Zakai
2014-01-14fix double start bug #1992 in browser as wellAlon Zakai
2014-01-14Merge pull request #2009 from waywardmonkeys/updates2Alon Zakai
Updates2
2014-01-14Merge pull request #1878 from Cloudef/incomingjuj
Add GLEW 1.10.0 emulation
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-14Bump version.1.8.10Bruce Mitchener
2014-01-14Expand aliases for strto*_l() to short functions.Bruce Mitchener
This removes warnings about incompatible pointer types in asm2 mode.
2014-01-14Move err/warn/etc from libc to libcextra.Bruce Mitchener
2014-01-14Replace getopt_long with musl version.Bruce Mitchener
2014-01-14stdlib/strtod.c is no longer used.Bruce Mitchener
This has been replaced with code from musl.
2014-01-14Replace implementation of warn*/err*.Bruce Mitchener
This eliminates a large number of warnings about incompatible function pointer casts when compiling for asm.js.
2014-01-14Fix asm2 compilation where __toread was used.Bruce Mitchener
2014-01-14Note change in signgam implementation from upstream.Bruce Mitchener
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