Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |
2013-12-14 | simplifies with alias | Lu Wang | |
2013-12-14 | Add machinery that detects whether a html page was built with --emrun ↵ | Jukka Jylänki | |
command line flag, and print a warning if not done so. | |||
2013-12-14 | Added test to check that emrun stdout, stderr and process exit code capture ↵ | Jukka Jylänki | |
work. | |||
2013-12-13 | Fix glGetIntegerv(GL_SHADER_BINARY_FORMATS) to not write anything to the out ↵ | Jukka Jylänki | |
pointer, since the output array is empty. | |||
2013-12-13 | Generate an GL_INVALID_VALUE error when user calls glGetXXX() with a null ↵ | Jukka Jylänki | |
out pointer instead of crashing. Fix glGetIntegerv of GL_SHADER_BINARY_FORMATS to not write anything out to the provided buffer. | |||
2013-12-12 | move tests/hello_world.js to src, so tests/ folder is not needed for sanity ↵ | Alon Zakai | |
checks | |||
2013-12-11 | Merge pull request #1853 from fadams/add-getprotobyname | Alon Zakai | |
add getprotobyname and associated functions from netdb.h. Add test_getpr... | |||
2013-12-10 | do not skip vector types in function signatures | Alon Zakai | |
2013-12-10 | Merge pull request #1902 from wahbahdoo/incoming | Alon Zakai | |
Fix NaN Canoicalization Issue for SIMD Bitcasts | |||
2013-12-10 | quote keys in library objects when necessary; fixes #1908 | Alon Zakai | |
2013-12-07 | fix i64 reads in formatString for fastcomp | Alon Zakai | |
2013-12-07 | fastcomp imports fix | Alon Zakai | |
2013-12-07 | get glue phase to emit i64 stuff for fastcomp | Alon Zakai | |
2013-12-06 | fix accidental rewrite of original url source of simd.js | Heidi Pan | |
2013-12-06 | updated simd.js to fix nan canonicalization issue for bitcasts | Heidi Pan | |
2013-12-05 | handle return values for library calls using aliases with different return types | Alon Zakai | |
2013-12-04 | Merge pull request #1894 from jvilk/legacy_fs_remove | Alon Zakai | |
[SDL Audio] Refactoring Mix_LoadWAV_RW to use new FS API. | |||
2013-12-03 | fix memset return value in makeSetValues | Alon Zakai | |
2013-12-03 | [SDL Audio] Refactoring Mix_LoadWAV_RW to use new FS API. | John Vilk | |
The old API was causing issues with certain file systems, as the `read` property required the execute bit AND the read bit to be set before it would return `true`. As a side benefit, the new code is simpler and cleaner. | |||
2013-12-03 | Fixed glSampleCoverage signature (vi to vii) | onnoj | |
The signature for glSampleCoverage was incorrect (vi); glSampleCoverage takes two arguments (vii). See: https://www.khronos.org/registry/webgl/specs/1.0.2/#5.14.3 and http://www.khronos.org/opengles/sdk/docs/man/xhtml/glSampleCoverage.xml | |||
2013-12-02 | report better error in fread on bad stream | Alon Zakai | |
2013-12-02 | return 0 on fread on invalid stream | Alon Zakai | |
2013-12-02 | make posix_madvise standlone | Alon Zakai | |
2013-12-01 | fix emscripten_hide_mouse removal of old rule | Alon Zakai | |
2013-11-30 | send EXPORTED_FUNCTIONS to fastcomp glue | Alon Zakai | |
2013-11-29 | fix memmove return value | Alon Zakai | |
2013-11-29 | add missing mkport dependency | Alon Zakai | |