aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2012-09-29Merge pull request #594 from larsxschneider/lars/add-split-optionAlon Zakai
Add emcc option "--split <size>" to split javascript file.
2012-09-28support ioctl-FIONREADAlon Zakai
2012-09-28final fixes for websockets test, now passesAlon Zakai
2012-09-28fix websockify usage issues and add basic data readingAlon Zakai
2012-09-27initial (not-yet-working) sockets implementationAlon Zakai
2012-09-26Merge pull request #589 from LCID-Fire/browser_setcanvassizeAlon Zakai
Implemented Browser.setCanvasSize to have a central point for resizing <...
2012-09-26Add 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-25add workaround for older node versionsAlon Zakai
2012-09-25fix null error in settings.js - we need this to be parsable from python tooAlon Zakai
2012-09-25Merge pull request #590 from imvu/relative-paths-pull-requestsAlon Zakai
Support loading emscripten argument filenames with relative paths
2012-09-25Merge pull request #588 from imvu/shell-file-pull-requestAlon Zakai
Add the ability to specify a custom shell file.
2012-09-25Define and document SHELL_FILE in settings.jsChad Austin
2012-09-25Support loading emscripten argument filenames with relative pathsChad Austin
2012-09-25Fix a crash when invoking emcc without a shell file.Chad Austin
2012-09-25Add a SHELL_FILE option to emscripten for more flexibility.Chad Austin
2012-09-26Implemented Browser.setCanvasSize to have a central point for resizing <canvas>LCID Fire
2012-09-25add support for bool rttiChad Austin
Conflicts: src/library.js
2012-09-24comments in settings.jsAlon Zakai
2012-09-20proper exception throwing when sync xhrs are attempted to be used in the browserAlon Zakai
2012-09-17warning about allocate()Alon Zakai
2012-09-17allocate() docsAlon Zakai
2012-09-17add void* argument to emscripten_async_call and ↵Alon Zakai
emscripten_push_main_loop_blocker
2012-09-11optimize String_lenAlon Zakai
2012-09-11fix 'segfault' in strtod (fixes test_sscanf)Alon Zakai
2012-09-11fix handling of (null) printingAlon Zakai
2012-09-11compress type info of zeroinitializers in ta2Alon Zakai
2012-09-10add hooks for main loop instead of hackish PROFILE_MAIN_LOOPAlon Zakai
2012-09-09check for segfaults in SAFE_HEAPAlon Zakai
2012-09-09Merge pull request #563 from mnaamani/networkingAlon Zakai
fixes needed to compile ENet networking library
2012-09-09clean up handling of initial runAlon Zakai
2012-09-09fix for sys/times() implementationMokhtar Naamani
2012-09-08fix preRunAlon Zakai
2012-09-07improve PROFILE_MAIN_LOOPAlon Zakai
2012-09-07run all available preRuns before checking if run must be delayedAlon Zakai
2012-09-06fix mousemove workaroundAlon Zakai
2012-09-06Merge pull request #553 from ehsan/audio2Alon Zakai
A collection of workaround fixes and a partial WebAudio implementation
2012-09-05typeid improvementsAlon Zakai
2012-09-04fixed htonlMokhtar Naamani
2012-09-01update settings.js docsAlon Zakai
2012-08-31sdl key forwarding patchAlon Zakai
2012-08-30Use expando properties except for data- attributesEhsan Akhgari
2012-08-30Fix the loop count limitEhsan Akhgari
2012-08-30Work around firefox bug 782777Ehsan Akhgari
2012-08-30Disable the Web Audio code for nowEhsan Akhgari
2012-08-30Two workarounds for Firefox bugsEhsan Akhgari
2012-08-30Revert "Make the compiler output executable scripts if node is being used"Ehsan Akhgari
This reverts commit 14c0e3d9474ac344f07065e1f0a78a8bf6555da1.
2012-08-30Current WebAudio experimentsEhsan Akhgari
2012-08-30Make the compiler output executable scripts if node is being usedEhsan Akhgari
2012-08-30Use the Mozilla Audio API in Mix_PlayChannel only if availableEhsan Akhgari
2012-08-30Iterate over the active channels instead of the audios when quittingEhsan Akhgari