aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
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);'.
2013-06-10coerce output of integer modulus, since x%0 is NaN, which is not an integerAlon Zakai
2013-06-10rename int because closure hates itAlon Zakai
2013-06-10comment on not inlining for setjmpAlon Zakai
2013-06-10add event listening to headlessAlon Zakai
2013-06-10warn if setjmp is used as a function pointerAlon Zakai
2013-06-08comment on EXPORT_ALLAlon Zakai
2013-06-08 - Fix for mod property of SDL key eventsAnthony Pesch
- Added misc SDL functions (SDL_GetKeyName, SDL_GetAppState, SDL_SetGammaRamp) - Added modifiers to test_sdl_key
2013-06-07refactor to potentially enable shadow flip on 32-bit valuesAlon Zakai
2013-06-07fix multiplications in setjmp codeAlon Zakai
2013-06-07remove break labels more aggresively, with a refined natural flow analysis1.4.9Alon Zakai
2013-06-07add missing return values in ↵Alon Zakai
safeRequestAnimationFrame,safeSetTimeout,safeSetInterval
2013-06-07Make lrint more correct. Closes #1265.Jez Ng
2013-06-07better erroring in SDL_Delay; issue #1255Alon Zakai
2013-06-05disabled support for hoisting back into loops in relooper1.4.8Alon Zakai
2013-06-05remove unneeded parameter to FindIndependentGroupsAlon Zakai
2013-06-05Merge pull request #1260 from modeswitch/fix-missing-constant-definitionAlon Zakai
INCOMING_QUEUE_LENGTH was not found by CircularBuffer constructor.
2013-06-05Merge pull request #1259 from modeswitch/fix-syntax-errorAlon Zakai
Missed closing parenthesis.
2013-06-05sdl fixes; fixes #1251Alon Zakai
2013-06-05INCOMING_QUEUE_LENGTH was not found by CircularBuffer constructor.Alan Kligman
2013-06-05Missed closing parenthesis.Alan Kligman
2013-06-05Merge branch 'commonjs' of github.com:jazzzz/emscripten into incomingAlon Zakai
2013-06-05return the best we can from SDL_OpenAudio, fixes #1253Alon Zakai
2013-06-04Merge branch 'master' of github.com:feeley/emscripten into incomingAlon Zakai
2013-06-04Add basic support for nonblocking readMarc Feeley
2013-06-04Merge pull request #1244 from onnoj/incomingAlon Zakai
Fixed Issue #1241: _scanString not supporting upper case format specifie...
2013-06-04check more carefully if a stream is a socketAlon Zakai
2013-06-04leave low fds for socketsAlon Zakai
2013-06-04Merge branch 'incoming' of github.com:kanaka/emscripten into incomingAlon Zakai
2013-06-04Merge pull request #1225 from inolen/errnoAlon Zakai
synced library.js errno codes with sys/errno.h
2013-06-04Updated tests to reflect new error valuesAnthony Pesch
2013-06-04Merge branch 'incoming-merge' of github.com:modeswitch/emscripten into incomingAlon Zakai
2013-06-04Check that module is an object instead of exportsJazz
2013-06-04Fixed Issue #1241: _scanString not supporting upper case format specifiers ↵Onno
A, E, F, G, X.
2013-06-03show stub malloc/free warnings only in ASSERTIONS==2Alon Zakai