aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2013-02-27cleanupsAlon Zakai
2013-02-27Add client-side vertex attribs and index buffersVladimir Vukicevic
2013-02-27Implement SDL_TEXTINPUTEhsan Akhgari
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-27Merge pull request #884 from vvuk/check-heap-alignAlon Zakai
Add CHECK_HEAP_ALIGN to perform runtime alignment checks
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-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-26handle missing pthread key-values properlyVladimir Vukicevic
2013-02-26refactor gl detection of attributes from capabilitiesAlon Zakai
2013-02-26emit function table names in SAFE_DYNCALL modeAlon Zakai
2013-02-26show signature in dyncall errors, and simplify approachAlon Zakai
2013-02-26Merge pull request #870 from michaeljbishop/adding-glgetbooleanv-gl-vertex-arrayAlon Zakai
Added support in glGetBooleanv GL_VERTEX_ARRAY.
2013-02-26SAFE_DYNCALLS optionAlon Zakai
2013-02-26do not emit undefined symbol warnings for symbols that only have an inline ↵Alon Zakai
version (like llvm_va_start)
2013-02-26split chunked global initializations over several linesAlon Zakai
2013-02-26add some newlines in very large function tables, to avoid emitting ↵Alon Zakai
ridiculously long lines
2013-02-26do not emit EMSCRIPTEN_GENERATED_FUNCTIONS to the final output, it is just ↵Alon Zakai
needed internally
2013-02-25use preserveDrawingBuffer in gl tests to make them work on latest firefoxAlon Zakai
2013-02-25always replace Math.imul in non-precise i32 mul mode, and disable test for ↵Alon Zakai
that in asm since asm alaways assumes precision
2013-02-25ensure input to HEAP[U]8 is an intAlon Zakai
2013-02-25fix asm.js parsing of memcpyAlon Zakai
2013-02-24do not emit direct multiplies of <32 bit in asm, asm only has 32-bit multiplyAlon Zakai
2013-02-23fix fuzzbug regarding signed 64-bit extensionAlon Zakai
2013-02-23fix default bits for integer multiplyAlon Zakai
2013-02-23clean up integer multiply codeAlon Zakai
2013-02-23turn on precise i32 multiplication by defaultAlon Zakai
2013-02-23implementation for writefdsAleksander Guryanov
2013-02-22Added some more symbols to `glGetBooleanv`Michael J. Bishop
- `GL_TEXTURE_COORD_ARRAY` - `GL_TEXTURE_2D` - `GL_COLOR_ARRAY`
2013-02-22use Math.imul for precise 32-bit mulAlon Zakai
2013-02-22always use Math.imul, with fast polyfill. will be useful for faster 64-bit mathAlon Zakai
2013-02-22asmify memcmpAlon Zakai
2013-02-22Added support in glGetBooleanv GL_VERTEX_ARRAY.Michael J. Bishop
2013-02-22add missing vertex array signaturesAlon Zakai
2013-02-22always warn on undefs in asm, since it breaks validationAlon Zakai
2013-02-22commentAlon Zakai
2013-02-22Merge pull request #869 from michaeljbishop/adding-oes-symbolsAlon Zakai
Added support for `glFramebufferTexture2DOES`
2013-02-22clean up last renderer when wiping everything out for vaoAlon Zakai
2013-02-22typoAlon Zakai
2013-02-22GL_UNSAFE_OPTS optionAlon Zakai
2013-02-22mark client attributes as modified when we clear for vaosAlon Zakai
2013-02-22wipe out previous vao-related state when binding a vaoAlon Zakai
2013-02-22save client states in vertex array objectsAlon Zakai
2013-02-22turn on Math.imul by default in ASM_JS mode; it has practically no downsides ↵Alon Zakai
since it is now used only when actually needed, which is rare, and the polyfill is very efficient
2013-02-22Added support for `glFramebufferTexture2DOES`Michael J. Bishop
2013-02-21Merge pull request #860 from waywardmonkeys/strtok-allocAlon Zakai
Statically allocate the strtok state block so it doesn't trip up our leak detection