aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-02-28disable 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-28fix test_white_list_exceptionAlon Zakai
2013-02-28fix test_uncaught_exceptionAlon Zakai
2013-02-28add missing calloc dependency in gcAlon Zakai
2013-02-28fix test_exit_stackAlon Zakai
2013-02-28fix test_exceptionsAlon Zakai
2013-02-28enlarge v8/node stack size, to avoid relooper stack overflows on huge projectsAlon Zakai
2013-02-28test updatesAlon Zakai
2013-02-28inline by default, now that lto is off by defaultAlon Zakai
2013-02-28translate undef to 0 in toNiceIdent, so it never gets emitted as an identifierAlon Zakai
2013-02-28disable llvm lto except for -O3, due to issues we have been seeingAlon Zakai
2013-02-28support multiple arguments to default html print, printErrAlon Zakai
2013-02-27Merge pull request #882 from lptr/function-lookup-from-moduleAlon Zakai
Reverse the order of function lookup in getCFunc() to avoid eval()
2013-02-27Merge pull request #887 from MichaelRiss/glVertex2iAlon Zakai
Add glVertex3i and glVertex2i calls
2013-02-27fix and enable gles2 testsAlon Zakai
2013-02-27comment out hardcoded debug pathsAlon Zakai
2013-02-27fix glIs*Alon Zakai
2013-02-27expose current buffers outside of FULL_ES2 - needed for gl emulationAlon Zakai
2013-02-27refactor byteSizeByTypeRoot and use it in FULL_ES2Alon Zakai
2013-02-27cleanupsAlon Zakai
2013-02-27Add client-side vertex attribs and index buffersVladimir Vukicevic
2013-02-27Merge pull request #889 from ehsan/sdl_textinputAlon Zakai
Implement SDL_TEXTINPUT
2013-02-27add the rest of the gles2 emulation testsAlon Zakai
2013-02-27Implement SDL_TEXTINPUTEhsan Akhgari
2013-02-27add preparations for gles2 emulation testsAlon Zakai
2013-02-27csmith driver debug outputAlon Zakai
2013-02-28Add glVertex3i and glVertex2i callsMichael 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-27FORCE_GL_EMULATION optionAlon Zakai
2013-02-27properly emit calls to gl passthroughs with 0 params, and test for glErrorAlon Zakai
2013-02-27finish EMCC_OPTIMIZE_NORMALLY testAlon Zakai
2013-02-27test for EMCC_OPTIMIZE_NORMALLYAlon Zakai
2013-02-27experimental EMCC_OPTIMIZE_NORMALLY optionAlon Zakai
2013-02-27Merge pull request #884 from vvuk/check-heap-alignAlon Zakai
Add CHECK_HEAP_ALIGN to perform runtime alignment checks
2013-02-27Merge pull request #872 from juj/popen_printAlon Zakai
Add additional error reporting to Popen failures on Windows to be able t...
2013-02-27jcache docsAlon Zakai
2013-02-27Remove the inner-try again -- not needed at allLorant Pinter
2013-02-27Merge pull request #880 from waywardmonkeys/pthread_mutex_tryunlockAlon Zakai
Add a stub pthread_mutex_trylock().
2013-02-27Merge pull request #881 from vvuk/+response-filesAlon Zakai
only put filenames with no space in response file
2013-02-27Put back try-catch around closure exported function lookupLorant Pinter
2013-02-27Reverse the order of function lookup in getCFunc() to avoid having to call ↵Lorant Pinter
eval()
2013-02-26Add CHECK_HEAP_ALIGN to perform runtime alignment checksVladimir 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-26only put filenames with no space in response fileVladimir 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-27Add a stub pthread_mutex_trylock().Bruce Mitchener
2013-02-26Merge pull request #857 from caiiiycuk/writefdsAlon Zakai
draft implementation for writefds
2013-02-26return 0 in Mix_Init if no flags are provided; this allows ↵Alon Zakai
|while(Mix_Init(0)) Mix_Quit();| to work
2013-02-26Mix_QuitAlon Zakai
2013-02-26Merge branch 'incoming' of github.com:lptr/emscripten into lptr-incomingAlon Zakai
2013-02-26fix DEBUG ? 2 checksAlon Zakai
2013-02-26remove unneeded parens in pythonAlon Zakai
2013-02-26Merge pull request #879 from vvuk/cache-debugAlon Zakai
add cache debugging