aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2013-06-28Merge branch 'relooper-improvements' of github.com:int3/emscripten into incoming1.5.3Alon Zakai
2013-06-28fixed comment typosAnthony Pesch
2013-06-28don't explicitly initialize uninitialized globalsAnthony Pesch
2013-06-27Remove unused code and rebump version number.Jez Ng
2013-06-27Make DefaultTarget a local variable.Jez Ng
2013-06-27A little preprocessor trick.Jez Ng
Fake method lookups, in a way.
2013-06-27Remove unused macro.Jez Ng
2013-06-27Add a 'contains' helper function.Jez Ng
2013-06-26deprecate llvm opts in non-ta2 modesAlon Zakai
2013-06-26Merge branch 'source-maps' of github.com:int3/emscripten into int3-source-mapsAlon Zakai
Conflicts: tools/js-optimizer.js
2013-06-24Merge pull request #1302 from Manny-MADE/glut_fixesAlon Zakai
Several GLUT library improvements
2013-06-24notice when a function call definitely does not have a returnAlon Zakai
2013-06-24Merge pull request #1317 from michaeljbishop/sdl-mixer-sound-leakAlon Zakai
SDL mixer sound leak
2013-06-24Removed unnecessary "audio.paused = " statements.Michael J. Bishop
2013-06-24IMPROVED: ensured proper indentation for entire documentmanny/MADE
2013-06-22Merge remote-tracking branch 'upstream/incoming' into source-mapsJez Ng
Conflicts: emcc tools/js-optimizer.js tools/js_optimizer.py
2013-06-22IMPROVED: fixed codestyle to match java/jsmanny/MADE
IMPROVED: handling mouse position when pointer is locked
2013-06-22Fix line numbering for invoke instructions.Jez Ng
Line numbering of exceptions now work (better) in optimized mode.
2013-06-21reduce indentation in relooper1.5.1Alon Zakai
2013-06-21decrease indentation in jsifierAlon Zakai
2013-06-20Merge pull request #1312 from juj/win_test_statics_fixAlon Zakai
In metadata, store paths parsed from .ll files using forward slashes on Windows.
2013-06-20ensure a coercion on invoke callsAlon Zakai
2013-06-19fix CHECK_ALIGNAlon Zakai
2013-06-19update fastLong.jsAlon Zakai
2013-06-19Fixed error where SDL_Mixer would run out of channels because soundMichael J. Bishop
instances weren't removed when they were finished playing.
2013-06-19fix memmoveAlon Zakai
2013-06-19properly coerce imprecise i64 math callsAlon Zakai
2013-06-19keep |0 on function calls, allow other bitwise ops on heap accesses etc.Alon Zakai
2013-06-20In metadata, store paths parsed from .ll files using forward slashes on ↵Jukka Jylänki
Windows. Fixes safe heap line detection on Windows (the code splits on '/' only as path delimiter), closes issue #1233.
2013-06-19IMPROVED: removed empty line and white-space at EOLmanny/MADE
2013-06-19CHANGED: removed "MADE"-tag from commentsmanny/MADE
2013-06-19ADDED: GLUT_SCREEN_WIDTH + GLUT_SCREEN_HEIGHT in glutGetmanny/MADE
2013-06-19BUGFIX: several SDL related bugfixesmanny/MADE
2013-06-19IMPROVED: ADDED resizeListener that invokes the GLUT.reshapeFunc if specifiedmanny/MADE
2013-06-19Ensure line numbers are the same in HTML.Jez Ng
Chrome and FF seem to be able to handle the extra empty lines, but no harm making things more accurate. One thing less to worry about when debugging.
2013-06-18Merge pull request #1304 from int3/sdlAlon Zakai
Fix SDL color encoding
2013-06-18Merge pull request #1301 from Manny-MADE/va_lists_fixAlon Zakai
BUGFIX: lists cannot be copied as "llvm_va_copy" was broken, didn't copy list offset
2013-06-18do not do full Browser.init() in workers, just the minimum we needAlon Zakai
2013-06-18IMPROVED: va_list offset is not hardcoded, added commentsmanny/MADE
2013-06-18BUGFIX: lists cannot be llvm_va_copy was broken, didn't copy list offsetmanny/MADE
2013-06-17Fix SDL color encoding.Jez Ng
Little-endian + RGBA means that red is located at the lowest-order bits, not the highest. The hello_world_sdl test is now portable, because we no longer write to individual bytes. We also add a test for a completely blank screen, which should be black, not red. Closes #1287, #761, #765.
2013-06-17Implement strnlen.David Barksdale
2013-06-17Merge pull request #1283 from juj/SDL_CreateRGBSurfaceFromAlon Zakai
Don't throw when SDL_CreateRGBSurfaceFrom is called, but at least give a...
2013-06-17assert on Root being non-NULL in the relooperAlon Zakai
2013-06-16Merge pull request #1282 from juj/sdl_addtimerAlon Zakai
Fix SDL_AddTimer dyncall signature. The timer callback is of form 'typed...
2013-06-16Merge pull request #1284 from juj/SDL_WM_SetIconAlon Zakai
Add no-op SDL_WM_SetIcon.
2013-06-13do not eliminate dead code in EXPORT_ALLAlon Zakai
2013-06-13Add no-op SDL_WM_SetIcon.Jukka Jylänki
2013-06-13Don't throw when SDL_CreateRGBSurfaceFrom is called, but at least give an ↵Jukka Jylänki
uninitialized surface.
2013-06-13Fix SDL_AddTimer dyncall signature. The timer callback is of form 'typedef ↵Jukka Jylänki
Uint32 (SDLCALL * SDL_TimerCallback) (Uint32 interval, void *param);'.