aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2014-05-20Merge pull request #2369 from juj/musl_charfuncsAlon Zakai
Musl charfuncs
2014-05-21Migrate is*, to* and stro* to use musl libc.Jukka Jylänki
2014-05-20fuzz larger testcases in relooper fuzzerAlon Zakai
2014-05-20Merge pull request #2345 from lovasoa/fast-cwrapAlon Zakai
Fast cwrap
2014-05-20do not optimize out breaks if it causes excessive nestingAlon Zakai
2014-05-20update relooper fuzzerAlon Zakai
2014-05-20Implement Web Audio API playback backend to SDL Mix_* interface. This fixes ↵Jukka Jylänki
https://github.com/kripken/emscripten/commit/5b41371bb5897a49e1fdcad18d053f775105c846 when Web Audio API is available, and works around the Firefox bug https://bugzilla.mozilla.org/show_bug.cgi?id=654787.
2014-05-19Merge remote-tracking branch 'upstream/incoming' into fast-cwrapOphir LOJKINE
2014-05-19Adds support for SDL Window Events with event ids:Michael J. Bishop
- `SDL_WINDOWEVENT_FOCUS_GAINED` - `SDL_WINDOWEVENT_FOCUS_LOST` - `SDL_WINDOWEVENT_SHOWN` - `SDL_WINDOWEVENT_HIDDEN` Includes a fix for FFOS phones that prevent the `blur` event when audio is playing (Bugzilla 910340) Conflicts: src/library_sdl.js
2014-05-18Use JSfuncs.stackrestore instead of duplicating its codeOphir LOJKINE
2014-05-18Correct indentationOphir LOJKINE
2014-05-16expose typeof via emscripten::valChad Austin
2014-05-13Merge pull request #2348 from juj/context_lostAlon Zakai
WebGL context loss handling improvements.
2014-05-13Move the default WebGL context lost message to the default shell.html file ↵Jukka Jylänki
so that default applications still show the error message, and applications can easily override the behavior if/when they see fit.
2014-05-13Merge pull request #2353 from mhenschel/masterAlon Zakai
emscripten_async_wget2 progress callback only working on mozilla browsers
2014-05-13fix progress events for non mozilla browsersmhenschel
Progress events didn't work for me in Chrome or IE. This change fixes it for me.
2014-05-12Merge branch 'sdl_mouse_wheel' of github.com:jechter/emscripten into incoming1.18.1Alon Zakai
Conflicts: emscripten-version.txt
2014-05-12fix file argument changing before callback in async_wget; fixes #2349Alon Zakai
2014-05-12Add new function emscripten_is_webgl_context_lost() that allows code to ↵Jukka Jylänki
directly query to confirm the WebGL context loss status.
2014-05-12Remove the hardcoded alert message on WebGL context loss event in ↵Jukka Jylänki
library_browser.js, since it prevents applications from benignly handling WebGL context loss events by reloading GL assets from disk.
2014-05-11Code conventions and sign fix according to pull request feedbackjonas echterhoff
2014-05-11Fix typo: 'litterally' -> 'literally'Ophir LOJKINE
In French, it's spelled 'littéralement', with 2 't' ;)
2014-05-11Remove useless spacesOphir LOJKINE
2014-05-11Optimize ccall and cwrapOphir LOJKINE
2014-05-09Bring back old style SDL scroll events represented as mouse buttons; Support ↵jonas echterhoff
newer 'wheel' event to support Chrome; Support vertical as well as horizontal deltas.
2014-05-08ignore touch events that do not correspond to a tracked touch; fixes ↵Alon Zakai
BananaBread crashes
2014-05-08Merge pull request #2311 from fadams/fix-64bit-long-return-issueAlon Zakai
Fix 64bit long return issue
2014-05-08Make scroll wheel work with SDLjonas echterhoff
2014-05-07add Runtime.setTempRet0 method for symmetryFraser Adams
2014-05-06emit >>0 in HEAP8, for consistency with HEAP16|32Alon Zakai
2014-05-06some warnings on libc things we do not support; fixes #2313Alon Zakai
2014-05-06Apply Chad's fix from issue #2335 to fix other.test_embind.Jukka Jylänki
2014-05-03emit a global const for Math_fround(0) to avoid function call overheads in ↵Alon Zakai
the fround polyfill
2014-05-02use a case-insensitive regex in strptime; fixes #2324Alon Zakai
2014-05-02document and assert on only one browser main loop at a timeAlon Zakai
2014-05-02Merge pull request #2330 from juj/fs-trackingjuj
fs-tracking
2014-04-30Rename FS tracking delegate did* to on* as suggested in ↵Jukka Jylänki
https://github.com/kripken/emscripten/pull/1673 .
2014-04-29fix embind/asm.js in PRECISE_F32 modeChad Austin
2014-04-29support h and hh in sscanf, and fix non-i32 case in hex sscanf; fixes #2322Alon Zakai
2014-04-29do not exit runtime if safeSetTimeout|Interval are calledAlon Zakai
2014-04-29remove unneeded codeAlon Zakai
2014-04-29revert 2ad1070/#2297 due to errors, until we figure out the right solution; ↵Alon Zakai
see also #2310
2014-04-29fix bug where we tried to emit switches in fused multiples, which led to ↵Alon Zakai
labels on ifs in some cases; fixes #2302
2014-04-29Wrapped the delegate calls in exception handlers so the exceptionsMichael J. Bishop
would be reported, but not bubble up and be caught by the callers of the FS methods since the callers will interpret those as problems with the FS code and report them as such (which is very confusing). Also removed the "willClose" call as I don't use it.
2014-04-29Added support for moving paths.Michael J. Bishop
Removed specific callbacks for directories and files, opting instead for callbacks that apply to generic paths.
2014-04-29Added support for file tracking being used to track whenMichael J. Bishop
a file has been written to.
2014-04-29Added file closing to the list of tracked events.Michael J. Bishop
2014-04-29Added FileSystem tracking Support.Michael Bishop
2014-04-29Improve SAFE_HEAP assertion messages to be more informative out of the box.Jukka Jylänki
2014-04-25Merge pull request #2287 from chadaustin/embind-fastcomp-asm.jsAlon Zakai
Enable embind in fastcomp/asm.js