Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-02-28 | disable v8 stack size increase because of windows instability; make it easy ↵ | Alon Zakai | |
to at least add params to node/v8 in ~/.emscripten by defining a list there and not just a string | |||
2013-02-28 | fix test_white_list_exception | Alon Zakai | |
2013-02-28 | fix test_uncaught_exception | Alon Zakai | |
2013-02-28 | add missing calloc dependency in gc | Alon Zakai | |
2013-02-28 | fix test_exit_stack | Alon Zakai | |
2013-02-28 | fix test_exceptions | Alon Zakai | |
2013-02-28 | enlarge v8/node stack size, to avoid relooper stack overflows on huge projects | Alon Zakai | |
2013-02-28 | test updates | Alon Zakai | |
2013-02-28 | inline by default, now that lto is off by default | Alon Zakai | |
2013-02-28 | translate undef to 0 in toNiceIdent, so it never gets emitted as an identifier | Alon Zakai | |
2013-02-28 | disable llvm lto except for -O3, due to issues we have been seeing | Alon Zakai | |
2013-02-28 | support multiple arguments to default html print, printErr | Alon Zakai | |
2013-02-27 | Merge pull request #882 from lptr/function-lookup-from-module | Alon Zakai | |
Reverse the order of function lookup in getCFunc() to avoid eval() | |||
2013-02-27 | Merge pull request #887 from MichaelRiss/glVertex2i | Alon Zakai | |
Add glVertex3i and glVertex2i calls | |||
2013-02-27 | fix and enable gles2 tests | Alon Zakai | |
2013-02-27 | comment out hardcoded debug paths | Alon Zakai | |
2013-02-27 | fix glIs* | Alon Zakai | |
2013-02-27 | expose current buffers outside of FULL_ES2 - needed for gl emulation | Alon Zakai | |
2013-02-27 | refactor byteSizeByTypeRoot and use it in FULL_ES2 | Alon Zakai | |
2013-02-27 | cleanups | Alon Zakai | |
2013-02-27 | Add client-side vertex attribs and index buffers | Vladimir Vukicevic | |
2013-02-27 | Merge pull request #889 from ehsan/sdl_textinput | Alon Zakai | |
Implement SDL_TEXTINPUT | |||
2013-02-27 | add the rest of the gles2 emulation tests | Alon Zakai | |
2013-02-27 | Implement SDL_TEXTINPUT | Ehsan Akhgari | |
2013-02-27 | add preparations for gles2 emulation tests | Alon Zakai | |
2013-02-27 | csmith driver debug output | Alon Zakai | |
2013-02-28 | Add glVertex3i and glVertex2i calls | Michael Riss | |
These are basically just aliases for the glVertex3f function. Javascript seems to convert the integers to float values correctly. However, I did not follow the code path through the immediate mode emulation to know for sure. In my applications it works for "normal", small values (e.g. 1, 500, 1000, ...). | |||
2013-02-27 | FORCE_GL_EMULATION option | Alon Zakai | |
2013-02-27 | properly emit calls to gl passthroughs with 0 params, and test for glError | Alon Zakai | |
2013-02-27 | finish EMCC_OPTIMIZE_NORMALLY test | Alon Zakai | |
2013-02-27 | test for EMCC_OPTIMIZE_NORMALLY | Alon Zakai | |
2013-02-27 | experimental EMCC_OPTIMIZE_NORMALLY option | Alon Zakai | |
2013-02-27 | Merge pull request #884 from vvuk/check-heap-align | Alon Zakai | |
Add CHECK_HEAP_ALIGN to perform runtime alignment checks | |||
2013-02-27 | Merge pull request #872 from juj/popen_print | Alon Zakai | |
Add additional error reporting to Popen failures on Windows to be able t... | |||
2013-02-27 | jcache docs | Alon Zakai | |
2013-02-27 | Remove the inner-try again -- not needed at all | Lorant Pinter | |
2013-02-27 | Merge pull request #880 from waywardmonkeys/pthread_mutex_tryunlock | Alon Zakai | |
Add a stub pthread_mutex_trylock(). | |||
2013-02-27 | Merge pull request #881 from vvuk/+response-files | Alon Zakai | |
only put filenames with no space in response file | |||
2013-02-27 | Put back try-catch around closure exported function lookup | Lorant Pinter | |
2013-02-27 | Reverse the order of function lookup in getCFunc() to avoid having to call ↵ | Lorant Pinter | |
eval() | |||
2013-02-26 | Add CHECK_HEAP_ALIGN to perform runtime alignment checks | Vladimir Vukicevic | |
Adds a much cheaper CHECK_HEAP_ALIGN option to do heap access alignment checks. Less extensive than SAFE_HEAP, but also much cheaper. | |||
2013-02-26 | only put filenames with no space in response file | Vladimir Vukicevic | |
llvm-link can't seem to handle spaces in response files sanely, and I can't find a way to quote them. So just don't include them, and use it only on Windows. | |||
2013-02-27 | Add a stub pthread_mutex_trylock(). | Bruce Mitchener | |
2013-02-26 | Merge pull request #857 from caiiiycuk/writefds | Alon Zakai | |
draft implementation for writefds | |||
2013-02-26 | return 0 in Mix_Init if no flags are provided; this allows ↵ | Alon Zakai | |
|while(Mix_Init(0)) Mix_Quit();| to work | |||
2013-02-26 | Mix_Quit | Alon Zakai | |
2013-02-26 | Merge branch 'incoming' of github.com:lptr/emscripten into lptr-incoming | Alon Zakai | |
2013-02-26 | fix DEBUG ? 2 checks | Alon Zakai | |
2013-02-26 | remove unneeded parens in python | Alon Zakai | |
2013-02-26 | Merge pull request #879 from vvuk/cache-debug | Alon Zakai | |
add cache debugging |