Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-10-19 | Merge pull request #648 from ysangkok/chunked-bin-xhr-lazy-loading | Alon Zakai | |
Chunked binary webworker xhr lazy loading | |||
2012-10-20 | document SMALL_CHUNKS | Janus | |
2012-10-19 | assert on stack being too large compared to total memory | Alon Zakai | |
2012-10-19 | add argument to emscripten_async_prepare_data | Alon Zakai | |
2012-10-19 | emscripten_async_prepare_data | Alon Zakai | |
2012-10-19 | IE fixes | Alon Zakai | |
2012-10-19 | add tests for chunked binary web worker xhr | Janus | |
2012-10-17 | support for SDL resize event | Alon Zakai | |
2012-10-17 | UNALIGNED_MEMORY option to emulate unaligned reads/writes all the time, to ↵ | Alon Zakai | |
support some nonportable code | |||
2012-10-17 | use base64 as websocket protocol | Alon Zakai | |
2012-10-17 | Add explicit braces to one-liner if statements in library_egl.js. | Jukka Jylänki | |
2012-10-17 | Relax 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-17 | Implemented more EGL functions. | Jukka Jylänki | |
2012-10-17 | add sscanf support for 'i' | Alon Zakai | |
2012-10-17 | return identical ids from glGetUniformLocation when we need to | Alon Zakai | |
2012-10-17 | improve runtimelink handling of function aliases | Alon Zakai | |
2012-10-17 | Add `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-17 | Support for servers without byte serving, various small fixes | Janus | |
2012-10-13 | add parameter to emscripten_set_main_loop to optionally simulate an infinite ↵ | Alon Zakai | |
loop by throwing an exception (like glutMainLoop) | |||
2012-10-12 | embind integration in emcc and work towards a test | Alon Zakai | |
2012-10-12 | remove some phi warnings by default | Alon Zakai | |
2012-10-12 | Merge branch 'master' into incoming | Alon Zakai | |
2012-10-11 | make runtimelink work in the browser | Alon Zakai | |
2012-10-11 | add chunked lazy sync XHR loading in Web Workers | Janus | |
2012-10-11 | fix synchronous xhr in webworkers by reintroducing code deleted in be163123 | Janus | |
2012-10-04 | emscripten_async_prepare | Alon Zakai | |
2012-10-04 | stub for IMG_Load_RW | Alon Zakai | |
2012-10-04 | recvmsg and further socket debugging | Alon Zakai | |
2012-10-03 | socket debugging | Alon Zakai | |
2012-10-03 | fix gethostbyname_r | Alon Zakai | |
2012-10-03 | socket listen faking | Alon Zakai | |
2012-10-03 | fix gethostbyname closure error | Alon Zakai | |
2012-10-02 | enet and socket improvements | Alon Zakai | |
2012-10-02 | sendmsg and recvmsg | Alon Zakai | |
2012-10-02 | socket improvements towards enet test | Alon Zakai | |
2012-10-02 | support for connecting to sockets with fake ips from gethostbyname | Alon Zakai | |
2012-10-02 | gethostbyname initial support | Alon Zakai | |
2012-10-01 | fix websocket outgoing queue logic | Alon Zakai | |
2012-10-01 | inet_addr | Alon Zakai | |
2012-10-01 | clean up websocket tests | Alon Zakai | |
2012-10-01 | add socket send(), and almost working test | Alon Zakai | |
2012-10-01 | Merge pull request #592 from imvu/embind-pull-request | Alon Zakai | |
Embind pull request | |||
2012-09-29 | Merge pull request #594 from larsxschneider/lars/add-split-option | Alon Zakai | |
Add emcc option "--split <size>" to split javascript file. | |||
2012-09-28 | support ioctl-FIONREAD | Alon Zakai | |
2012-09-28 | final fixes for websockets test, now passes | Alon Zakai | |
2012-09-28 | fix websockify usage issues and add basic data reading | Alon Zakai | |
2012-09-27 | initial (not-yet-working) sockets implementation | Alon Zakai | |
2012-09-26 | Merge pull request #589 from LCID-Fire/browser_setcanvassize | Alon Zakai | |
Implemented Browser.setCanvasSize to have a central point for resizing <... | |||
2012-09-26 | Add emcc option "--split <size>" to split javascript file. | Lars Schneider | |
Splits the resulting javascript file into pieces to ease debugging. This option only works if Javascript is generated (target -o <name>.js). Files with function declarations must be loaded before main file upon execution. Without "-g" option: Creates files with function declarations up to the given size with the suffix "_functions.partxxx.js" and a main file with the suffix ".js". With "-g" option: Recreates the directory structure of the C source files and stores function declarations in their respective C files with the suffix ".js". If such a file exceeds the given size, files with the suffix ".partxxx.js" are created. The main file resides in the base directory and has the suffix ".js". | |||
2012-09-25 | Break IMVU dependencies in embind javascript | Chad Austin | |