aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2012-10-31fix sendmsg return valueAlon Zakai
2012-10-31fix sendmsg and recvmsg handling of iovAlon Zakai
2012-10-31send ArrayBuffers, not ArrayBufferViews, in socket code, to handle older ↵Alon Zakai
browsers
2012-10-31Merge pull request #665 from caiiiycuk/sscanfAlon Zakai
Fix sscanf white space bug
2012-10-31clear error message when browser createObjectURL does not return a string as ↵Alon Zakai
the spec says it should
2012-10-31warn in SDL_CreateThread about the problem with SDL threadsAlon Zakai
2012-10-31Fix sscanf whitespace bugAleksander Guryanov
Add test for sscanf
2012-10-30refactor DEFAULT_LIBRARY_FUNCS_TO_INCLUDEAlon Zakai
2012-10-30support growing the socket data buffer, and enable working bigdata socket testAlon Zakai
2012-10-30use binary data in websocketsAlon Zakai
2012-10-29fix bug with locking an sdl surface not reading the canvas pixel data ↵Alon Zakai
properly; fixes #664
2012-10-29only fire sdl unload event if there is a main loopAlon Zakai
2012-10-29adjust memory size in testsAlon Zakai
2012-10-28Merge pull request #651 from larsxschneider/json_parserAlon Zakai
Fix -O1 warning and use proper pointers for Jansson library.
2012-10-27memory growth must be manually enabled with ALLOW_MEMORY_GROWTH, in which ↵Alon Zakai
case the eliminator runs in safe mode
2012-10-27eliminate into one-time do-while loopsAlon Zakai
2012-10-26emscripten_get_worker_queue_sizeAlon Zakai
2012-10-26support for %n in sscanfAlon Zakai
2012-10-26do not do signalyzer pass if sign correction is on - it can only hurt thereAlon Zakai
2012-10-25warning and TODO on memory enlargingAlon Zakai
2012-10-25push to FUNCTION_TABLE, don't concat and re-assign: this avoid changing the ↵Alon Zakai
global FUNCTION_TABLE object, and makes it valid in compiled code to assume that globals do not change
2012-10-25Fix -O1 warning and use proper pointers for Jansson library.Lars Schneider
See details: https://github.com/kripken/emscripten/pull/636#issuecomment-9456782
2012-10-22handle no-data worker api calls, and more testsAlon Zakai
2012-10-22worker api closure fixes + additional testingAlon Zakai
2012-10-22initial work on worker apiAlon Zakai
2012-10-22fix SAFE_HEAP historyAlon Zakai
2012-10-22fix strtok temp state ; fixes #658Alon Zakai
2012-10-22fix array detection in preadAlon Zakai
2012-10-21listen to glut events on glutInit, so it works even without main loopAlon Zakai
2012-10-19emit unreachable throws only in ASSERTIONS modeAlon Zakai
2012-10-19do not forward worker stdio by default ; fixes test_workerAlon Zakai
2012-10-19tweak sync xhr code a tiny bitAlon Zakai
2012-10-19Merge pull request #648 from ysangkok/chunked-bin-xhr-lazy-loadingAlon Zakai
Chunked binary webworker xhr lazy loading
2012-10-20document SMALL_CHUNKSJanus
2012-10-19assert on stack being too large compared to total memoryAlon Zakai
2012-10-19add argument to emscripten_async_prepare_dataAlon Zakai
2012-10-19emscripten_async_prepare_dataAlon Zakai
2012-10-19IE fixesAlon Zakai
2012-10-19add tests for chunked binary web worker xhrJanus
2012-10-17support for SDL resize eventAlon Zakai
2012-10-17UNALIGNED_MEMORY option to emulate unaligned reads/writes all the time, to ↵Alon Zakai
support some nonportable code
2012-10-17use base64 as websocket protocolAlon Zakai
2012-10-17Add explicit braces to one-liner if statements in library_egl.js.Jukka Jylänki
2012-10-17Relax the implementation of eglGetDisplay function to always return the ↵Jukka Jylänki
Emscripten EGLDisplay handle. This allows EGL-using GLES2-related tests to pass, they expect to utilize eglGetDisplay as if running on X11.
2012-10-17Implemented more EGL functions.Jukka Jylänki
2012-10-17add sscanf support for 'i'Alon Zakai
2012-10-17return identical ids from glGetUniformLocation when we need toAlon Zakai
2012-10-17improve runtimelink handling of function aliasesAlon Zakai
2012-10-17Add `library_jansson` for JSON parsing.Lars Schneider
Jansson is a C library for encoding, decoding and manipulating JSON data [1]. `library_jansson` mimics this interface (currently only for decoding) to perform JSON parsing in Javascript. [1] https://github.com/akheron/jansson
2012-10-17Support for servers without byte serving, various small fixesJanus