| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-01-04 | fix some relooper compiler warnings and update reftests for previous fixes1.8.3 | Alon Zakai | |
| 2014-01-03 | Merge pull request #1967 from coolwanglu/pr_clean | Alon Zakai | |
| clean extra arg of JSify | |||
| 2014-01-03 | Merge pull request #1941 from onnoj/incoming | Alon Zakai | |
| Added workaround for window.scrollX compat. | |||
| 2014-01-03 | optimize main loop in SDL_UnlockSurface to avoid a branch | Alon Zakai | |
| 2014-01-03 | [SDL] Actually fix SDL_UnlockSurface in IE10/IE11. | John Vilk | |
| The previous revision did not copy over pixel data properly. This time, I have reverted the IE path to the code used in this method prior to the breaking change, and have tested it with JSMESS. | |||
| 2014-01-03 | [SDL] Fixing SDL_UnlockSurface in IE10/IE11. | John Vilk | |
| Previously, just calling SDL_UnlockSurface in IE10/IE11 would throw an exception, since Emscripten assumed that the ImageData's `data` property was Uint8ClampedArray, which has a backing buffer. IE10/IE11 still uses the deprecated CanvasPixelArray, which does not have a backing buffer property: https://developer.mozilla.org/en-US/docs/Web/API/CanvasPixelArray I've added an additional path to SDL_UnlockSurface for these browsers. | |||
| 2014-01-03 | fix output in glGetFramebufferAttachmentParameteriv | Alon Zakai | |
| 2014-01-03 | properly handle getParameter returning null when it means a null object ↵ | Alon Zakai | |
| (e.g., no buffer is bound) and not an invalid name | |||
| 2014-01-03 | make sure to give Ids to split blocks in relooper1.8.1 | Alon Zakai | |
| 2014-01-03 | do not assume callee.caller always exists | Alon Zakai | |
| 2014-01-03 | Update library_browser.js | onnoj | |
| 2014-01-03 | clean extra arg of JSify | Lu Wang | |
| 2014-01-02 | adjust TOTAL_MEMORY at runtime, to take into account last minute changes to ↵ | Alon Zakai | |
| Module.TOTAL_MEMORY | |||
| 2014-01-02 | support #include x.js in our preprocessed js sources | Alon Zakai | |
| 2014-01-02 | minor clean | Lu Wang | |
| 2014-01-02 | Fixed undefined check. | onnoj | |
| Forgot I had to explicitly check the type of variable type to see if it's undefined. | |||
| 2014-01-02 | Added comments & assert to scrollX fix. | onnoj | |
| Added comments to fix as per @kripken's request. Added an assert too (guarded by ASSERTIONS define) | |||
| 2014-01-01 | ensure we add precision in gl emulation to both fragment and vertex shaders | Alon Zakai | |
| 2014-01-01 | fix gl typos | Alon Zakai | |
| 2014-01-01 | Merge pull request #1870 from inolen/structinfo_fix | Alon Zakai | |
| fix for structures generated by manually calling generateStructInfo | |||
| 2014-01-01 | minor clean | Lu Wang | |
| 2013-12-29 | Merge pull request #1928 from anlambert/webgl_ANGLE_instanced_arrays | Alon Zakai | |
| Add support for WebGL hardware instancing through extension ANGLE_instanced_arrays | |||
| 2013-12-28 | Merge pull request #1954 from richq/lockref | Alon Zakai | |
| Fix missing SDL_LockSurface reference | |||
| 2013-12-28 | optimize relooper id counters1.8.0 | Alon Zakai | |
| 2013-12-27 | Fix missing SDL_LockSurface reference | Richard Quirk | |
| Prior to this change, when blitting from the screen to a memory buffer the code could throw a "ReferenceError: _SDL_LockSurface is not defined" if SDL_LockSurface was not used elsewhere in the C code. | |||
| 2013-12-26 | support for optional complete emulation in relooper1.7.9 | Alon Zakai | |
| 2013-12-26 | fix js libraries in fastcomp; fixes #1948 | Alon Zakai | |
| 2013-12-25 | ignore whitespace in relooper reftests | Alon Zakai | |
| 2013-12-25 | properly handle invoke of setjmp, by lowering to a call, which fixes phis ↵ | Alon Zakai | |
| that refer to it. fixes #1942 | |||
| 2013-12-23 | Added workaround for window.scrollX compat. | onnoj | |
| window.scrollX/Y is not available in IE11. As far as specifications go, is currently only specified in draft (http://dev.w3.org/csswg/cssom-view/#refsCSSOM). Falling back to window.pageXOffset seems like a good workaround. On a related note; my Emscriptified project runs on IE11 although performance is very poor (mostly due to Internet Explorer itself, I think). It's pretty finicky about the shaders, as they introduced an extra set of requirements. (inout/in/out keywords not supported, can't construct mat3 from mat4, etc). | |||
| 2013-12-20 | Move emscripten-source-map.min.js to src/ since it is a non-tests file ↵ | Jukka Jylänki | |
| needed by public use when user wants to emscripten_log with a C callstack. Remove redundant emscripten_demangle function. | |||
| 2013-12-20 | Update emscripten_log to work with the handwritten JS demangler. Update tests. | Jukka Jylänki | |
| 2013-12-20 | Also give the ability to print out function parameters in the callstack with ↵ | Jukka Jylänki | |
| emscripten_get_callstack. | |||
| 2013-12-20 | Add new functions emscripten_log() in emscripten.h which allows printing out ↵ | Jukka Jylänki | |
| log messages with callstack information, and function emscripten_get_callstack(), which allows programmatically obtaining the current callstack. | |||
| 2013-12-20 | Merge pull request #1934 from juj/eglCreateContext | juj | |
| eglCreateContext. | |||
| 2013-12-20 | Make EGL function eglCreateContext spec-conformant and actually read the ↵ | Jukka Jylänki | |
| EGL_CONTEXT_CLIENT_VERSION field when creating a context. Require the version number 2, since WebGL1 maps to GLES2. | |||
| 2013-12-19 | Implement command line passing to work to emrun when --emrun is passed. | Jukka Jylänki | |
| 2013-12-18 | Add support for launching Android browsers via emrun. Fix log message print ↵ | Jukka Jylänki | |
| ordering with explicit synchronization. | |||
| 2013-12-17 | add OpenGL Desktop/ES 2.0 hardware instancing extensions compatibility functions | Antoine Lambert | |
| 2013-12-17 | use GL_ASSERTIONS instead of ASSERTIONS | Antoine Lambert | |
| 2013-12-17 | add support for WebGL hardware instancing through extension ↵ | Antoine Lambert | |
| ANGLE_instanced_arrays | |||
| 2013-12-16 | fix varargs signature generation, '...' is optional and both cases must be ↵ | Alon Zakai | |
| handled; fixes #1918 | |||
| 2013-12-16 | handle a single empty alloca; fixes #1919 | Alon Zakai | |
| 2013-12-16 | Merge pull request #1896 from juj/emrun | Alon Zakai | |
| Emrun | |||
| 2013-12-16 | Merge pull request #1926 from coolwanglu/typo_fix | Alon Zakai | |
| fix typo | |||
| 2013-12-16 | Merge pull request #1920 from coolwanglu/alias_fix | Alon Zakai | |
| simplifies with alias | |||
| 2013-12-17 | Fix for glfwSetCharCallback not being fired if glfwSetKeyCallback was also ↵ | CliffyA | |
| registered | |||
| 2013-12-16 | fix typo | Lu Wang | |
| 2013-12-14 | do not add i64 support funcs more than once | Alon Zakai | |
| 2013-12-14 | export code for CallHandlers.h | Alon Zakai | |
