Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-01-15 | release 1.9.01.9.0 | Alon Zakai | |
2014-01-15 | fix Math_floor coercion in unrecommended codegen modes (no roundings ↵ | Alon Zakai | |
correction or imprecise i64) | |||
2014-01-15 | Merge pull request #2021 from juj/gl_combine_shader | Alon Zakai | |
GL_COMBINE shader. | |||
2014-01-15 | Optimize 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-15 | add musl fputws, fix vswprintf, add testing for fwprintf and swprintf as well1.8.14 | Alon Zakai | |
2014-01-15 | remove musl use of fwritex1.8.13 | Alon Zakai | |
2014-01-15 | Merge pull request #2018 from waywardmonkeys/updates31.8.12 | Alon Zakai | |
Updates3 | |||
2014-01-15 | Merge pull request #2019 from juj/evenmore_gl_opts | Alon Zakai | |
Even more gl opts | |||
2014-01-15 | Optimize 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-15 | Further optimize FFP GL getRenderer() operation. | Jukka Jylänki | |
2014-01-15 | Bump version. | Bruce Mitchener | |
2014-01-15 | Fill in undefined math symbols. | Bruce Mitchener | |
2014-01-14 | fix aggressiveVariableElimination bug and add testing | Alon Zakai | |
2014-01-14 | fix for running js optimizer standalone | Alon Zakai | |
2014-01-14 | fix wprintf-related bug that bit fastcomp1.8.11 | Alon Zakai | |
2014-01-14 | disable test_simd3 due to breakage | Alon Zakai | |
2014-01-14 | fix double start bug #1992 in browser as well | Alon Zakai | |
2014-01-14 | Merge pull request #2009 from waywardmonkeys/updates2 | Alon Zakai | |
Updates2 | |||
2014-01-14 | Merge pull request #1878 from Cloudef/incoming | juj | |
Add GLEW 1.10.0 emulation | |||
2014-01-14 | Add GLEW 1.10.0 emulation | Jari 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-14 | Bump version.1.8.10 | Bruce Mitchener | |
2014-01-14 | Expand aliases for strto*_l() to short functions. | Bruce Mitchener | |
This removes warnings about incompatible pointer types in asm2 mode. | |||
2014-01-14 | Move err/warn/etc from libc to libcextra. | Bruce Mitchener | |
2014-01-14 | Replace getopt_long with musl version. | Bruce Mitchener | |
2014-01-14 | stdlib/strtod.c is no longer used. | Bruce Mitchener | |
This has been replaced with code from musl. | |||
2014-01-14 | Replace 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-14 | Fix asm2 compilation where __toread was used. | Bruce Mitchener | |
2014-01-14 | Note change in signgam implementation from upstream. | Bruce Mitchener | |
2014-01-13 | add fputwc, which enables wprintf1.8.9 | Alon Zakai | |
2014-01-13 | Merge branch 'incoming' of github.com:kripken/emscripten into incoming1.8.8 | Alon Zakai | |
conflicts: tests/test_core.py tools/shared.py | |||
2014-01-13 | Merge pull request #2004 from waywardmonkeys/updates | Alon Zakai | |
Updates | |||
2014-01-13 | unset precision if set to -1 | Alon Zakai | |
2014-01-13 | handle precision -1 in printf .* | Alon Zakai | |
2014-01-14 | Fix GL emulation regression with VBO data caused by commit ↵ | Jukka Jylänki | |
https://github.com/kripken/emscripten/commit/4e3c1b3e862ffd8e324cd1f24ed84692bd50a83b#commitcomment-5056244 | |||
2014-01-13 | optimize searching in set of implemented functions in fastcomp toolchain code | Alon Zakai | |
2014-01-13 | avoid leaks on multiple calls to relooper MakeOutputBuffer | Alon Zakai | |
2014-01-13 | allow relooper to manager its own output buffer, to avoid fixed output limits1.8.7 | Alon Zakai | |
2014-01-14 | Bump version. | Bruce Mitchener | |
2014-01-14 | Move scalbn to libc to fix broken functionality. Disable test on x86. | Bruce Mitchener | |
2014-01-14 | Add lots of math functions. | Bruce Mitchener | |
2014-01-14 | Another test for negative zero and hex floats. | Bruce Mitchener | |
2014-01-14 | Make 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-14 | Add gamma functions. | Bruce Mitchener | |
2014-01-14 | Add 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-13 | add dependencies so code with exceptions (invoke/landingpad) but without an ↵ | Alon Zakai | |
actual throw will still pull in the necessary stuff | |||
2014-01-13 | clean up some more tests/cases | Alon Zakai | |
2014-01-13 | fix testcase to validate as llvm ir | Alon Zakai | |
2014-01-13 | remove old test that cannot be done in fastcomp, relies on code ↵ | Alon Zakai | |
miscompilation in original compiler | |||
2014-01-13 | Merge pull request #1999 from juj/gl_prepareclientattr | Alon Zakai | |
GL prepareClientAttributes. | |||
2014-01-13 | Reintroduce liveClientAttributes to optimize the case where GL emulation ↵ | Jukka Jylänki | |
code is called with a very large GLImmediate.MAX_TEXTURES size. |