aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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-07fix test_luaAlon Zakai
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
2014-01-07handle variables that assign a value including themselves in ↵Alon Zakai
aggressiveVariableElimination
2014-01-07make aggressiveVariableElimination usable through a settingAlon Zakai
2014-01-07properly overflow gep arguments; fixes #1975Alon Zakai
2014-01-07Merge branch 'add-libuuid' of github.com:fadams/emscripten into incomingAlon Zakai
Conflicts: tools/shared.py
2014-01-07make benchmark suite more robust to settings changesAlon Zakai
2014-01-07clean up test runner outputAlon Zakai
2014-01-07Fix old link in ChangeLog.Jukka Jylänki
2014-01-07Updated ChangeLog for 1.7.9 - 1.8.2.Jukka Jylänki
2014-01-07Added ENVIRONMENT_IS_WEB test prior to checking window.crypto etc. so we are ↵Fraser Adams
sure that window is defined
2014-01-06benchmark updatesAlon Zakai
2014-01-06benchmark updatesAlon Zakai
2014-01-06preprocess recursively into #include's; fixes #1984Alon Zakai
2014-01-06refactor lua benchmarkAlon Zakai
2014-01-06option to benchmark multiple llvm versions, both native and jsAlon Zakai
2014-01-06refactor lua benchmarkAlon Zakai
2014-01-06option to benchmark multiple llvm versions, both native and jsAlon Zakai
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-06changed != to !== in a couple of places. Added fix to prevent closure ↵Fraser Adams
minifying crypto randomBytes etc. this fix makes use of closure externs so I've added a closure-externs.js to hold the definitions and modified tools/shared.py closure_compiler method to point to closure-externs.js. I've added externs to fix minification of the ws library used in library_sockfs.js too
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