Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | Fixed the following problems in the perror function: | Michael Riss | |
- putc is not declared -> replaced by fputc - puts was used to output the user message which automatically introduced an unwanted newline between user message and error description -> replaced by fputs which does not add the newline Signed-off-by: Michael Riss <Michael.Riss@gmx.de> | |||
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 | |||
2013-02-26 | handle missing pthread key-values properly | Vladimir Vukicevic | |
2013-02-26 | refactor gl detection of attributes from capabilities | Alon Zakai | |
2013-02-26 | emit function table names in SAFE_DYNCALL mode | Alon Zakai | |
2013-02-26 | add cache debugging | Vladimir Vukicevic | |
2013-02-26 | show signature in dyncall errors, and simplify approach | Alon Zakai | |
2013-02-26 | testing for glGetBooleanv | Alon Zakai | |
2013-02-26 | Merge pull request #870 from michaeljbishop/adding-glgetbooleanv-gl-vertex-array | Alon Zakai | |
Added support in glGetBooleanv GL_VERTEX_ARRAY. | |||
2013-02-26 | Merge pull request #871 from ysangkok/chrome-fix | Alon Zakai | |
bin xhr sync test: add OPTIONS verb so that CORS works in Chrome. also use OOP | |||
2013-02-26 | clean up response file code | Alon Zakai | |
2013-02-26 | Merge pull request #877 from vvuk/response-files | Alon Zakai | |
Add response file support to emscripten | |||
2013-02-26 | Add myself to AUTHORS file | Vladimir Vukicevic | |
2013-02-26 | Generate response file for llvm-link | Vladimir Vukicevic | |
2013-02-26 | Add basic response file parsing to emcc | Vladimir Vukicevic | |
2013-02-26 | SAFE_DYNCALLS option | Alon Zakai | |
2013-02-26 | make DEBUG an int | Alon Zakai | |
2013-02-26 | sort settings keys, to ensure the same order for debugging and jcache ↵ | Alon Zakai | |
comparisons | |||
2013-02-26 | do not emit undefined symbol warnings for symbols that only have an inline ↵ | Alon Zakai | |
version (like llvm_va_start) | |||
2013-02-26 | split chunked global initializations over several lines | Alon Zakai | |
2013-02-26 | add some newlines in very large function tables, to avoid emitting ↵ | Alon Zakai | |
ridiculously long lines | |||
2013-02-26 | do not emit EMSCRIPTEN_GENERATED_FUNCTIONS to the final output, it is just ↵ | Alon Zakai | |
needed internally | |||
2013-02-26 | save last cache clear time | Alon Zakai | |
2013-02-26 | allow adjusting # of cpu cores to use with EMCC_CORES | Alon Zakai | |
2013-02-26 | only check # of cores once in js optimizer | Alon Zakai | |
2013-02-26 | more jcache logging in debug mode | Alon Zakai | |