Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-02-19 | Change ASSERTION by GL_ASSERTIONS | Anthony Liot | |
2014-02-19 | Add support of both emulate and extension vao | Anthony Liot | |
2014-02-19 | VAO Extension | Anthony Liot | |
2014-02-19 | Correct syntax of allocate function | Joel Croteau | |
Fix mistaken syntax for use of allocate and restore original, very strange syntax. | |||
2014-02-19 | Provide better implementation of localeconv and fix logic error in allocate | Joel Croteau | |
This allocates more space to the structure returned by localeconv. This fixes an error caused by some locale functions (specifically moneypunct_byname::init trying to access members of the lconv struct beyond the first and dereferencing invalid pointers. This also fixes a bug in allocate() which occurred when allocating a single-typed array of data of type size greater than one byte. The function had been incrementing its index into the array by the byte size, causing it to skip elements in arrays of larger type sizes. Fixes issue #2134. | |||
2014-02-18 | fixed console detection so it does not throw | Richard Janicek | |
tested in Chrome and Firefox | |||
2014-02-18 | improve typed arrays error | Alon Zakai | |
2014-02-18 | add a version of emscripten_set_main_loop where the main loop takes an ↵ | Alon Zakai | |
argument; fixes #2114 | |||
2014-02-18 | Don't redefine console if it already exists like in Chrome worker. | Richard Janicek | |
2014-02-18 | add some asserts in dynCall | Alon Zakai | |
2014-02-17 | Merge pull request #1871 from abergmeier/fixup_eglSwapBuffers | juj | |
Fix eglSwapBuffers | |||
2014-02-16 | support memory growth in (non-validating) asm.js | Alon Zakai | |
2014-02-16 | RETAIN_COMPILER_SETTINGS, Runtime.getCompilerSetting and ↵ | Alon Zakai | |
emscripten_get_compiler_setting - an optional way to look up compiler flags at runtime | |||
2014-02-15 | clear status when proxied worker first responds | Alon Zakai | |
2014-02-15 | fix canvas proxy code for sending resize events | Alon Zakai | |
2014-02-14 | add request animation frame logic to proxy-to-worker | Richard Janicek | |
if worker sends frames faster then browser can render, skip them | |||
2014-02-14 | add missing asm coercion to va_arg handler; #2120 | Alon Zakai | |
2014-02-14 | Remove flush from eglSwapBuffers emulation. | Andreas Bergmeier | |
2014-02-14 | Remove ambiguous error reporting of EGL_NOT_INITIALIZED and add error ↵ | Andreas Bergmeier | |
reporting for EGL_BAD_ACCESS when invalid internal state is encountered. | |||
2014-02-14 | Bring eglSwapBuffers closer to actual documentation. | Andreas Bergmeier | |
Checks now whether ctx was initialized and not lost. Does a glFlush before returning. And returns success codes from function. | |||
2014-02-13 | make logo a link | Alon Zakai | |
2014-02-13 | improve emcc help on shell file, and add minimal shell file example | Alon Zakai | |
2014-02-13 | Merge branch 'prettier-shell' of github.com:TehEpicPineapple/emscripten into ↵ | Alon Zakai | |
incoming Conflicts: AUTHORS | |||
2014-02-13 | Fix Mozilla Audio Data API usage after my previous commit that added the use ↵ | Jukka Jylänki | |
of ScriptProcessorNode to Web Audio backend. Fixes #2126. | |||
2014-02-12 | Spruced up shell.html | Jack Arrington | |
Made a bunch of changes to shell, including a logo, a nicer spinner, and better colors. Note on the image: I simply inlined the svg logo from docs/, which made the file significantly longer. | |||
2014-02-12 | Merge branch 'regexp-syntax-fix' of github.com:svaarala/emscripten into incoming | Alon Zakai | |
Conflicts: AUTHORS | |||
2014-02-11 | initialize pixel buffer inside of makeSurface for SDL_SWSURFACE | Anthony Pesch | |
2014-02-12 | Implement SDL audio buffer queueing to use Web Audio ScriptProcessorNode in ↵ | Jukka Jylänki | |
the special case when the requested SDL_OpenAudio sampling rate matches the Web Audio graph native sampling rate. Using ScriptProcessorNode should have the benefit that it pulls audio buffer updates with better granularity/precision than using setTimeout, which suffers from too much jitter (even spikes as long as 230msecs seen). | |||
2014-02-11 | Merge branch 'incoming' of github.com:mgerhardy/emscripten into incoming | Alon Zakai | |
Conflicts: src/library_sdl.js | |||
2014-02-11 | refactor mouse wheel handling code to be shared across SDL, glfw, glut | Alon Zakai | |
2014-02-11 | escape curly braces in regexps for more portability (unescaped curly braces ↵ | Sami Vaarala | |
are technically a SyntaxError in Ecmascript E5/E5.1) | |||
2014-02-10 | NO_EXIT_RUNTIME option, to set Module.noExitRuntime during compilation | Alon Zakai | |
2014-02-10 | keep runtime alive if workers are called | Alon Zakai | |
2014-02-10 | keep runtime alive if we call async_prepare* | Alon Zakai | |
2014-02-10 | don't forget to set ai_next in getaddrinfo, and use emcc in test_getaddrinfo ↵ | Alon Zakai | |
as it now needs libc | |||
2014-02-10 | add stub for mkport in non-webrtc | Alon Zakai | |
2014-02-10 | fix typo in exceptions code | Alon Zakai | |
2014-02-10 | fix fake _ZTISt9exception | Alon Zakai | |
2014-02-10 | add aborting stubs in main modules, and replace them with functions from ↵ | Alon Zakai | |
side modules | |||
2014-02-10 | Merge pull request #2099 from waywardmonkeys/upstream-from-imvu | Alon Zakai | |
Upstream from imvu | |||
2014-02-10 | Merge pull request #1408 from rfk/move-std-fds | Alon Zakai | |
Make stdin/stdout/stderr be 0/1/2 per standard posix convention | |||
2014-02-10 | fix glGetTexParameter; fixes #2112 | Alon Zakai | |
2014-02-09 | Merge pull request #2084 from amatus/push-upstream | Alon Zakai | |
Remove _-prefix from in6addr_* | |||
2014-02-09 | manually define typeinfo for std::exception | Alon Zakai | |
2014-02-09 | emit aborting stubs for all missing functions, not just in asm mode | Alon Zakai | |
2014-02-09 | improve gl function copying code | Alon Zakai | |
2014-02-09 | override emscripten_ versions of gl funcs when gl emulation kicks in | Alon Zakai | |
2014-02-09 | map gl functions to emscripten_ versions to avoid collisions, and to work in ↵ | Alon Zakai | |
fastcomp | |||
2014-02-09 | resolve gl aliases directly, simpler for fastcomp | Alon Zakai | |
2014-02-09 | handle unknown shader compilation bugs a little better | Alon Zakai | |