aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2014-05-21Call __destruct on the JS implementation when the instance is destroyed.Chad Austin
2014-05-21Rename initialize to __construct to avoid conflicting with C++ function namesChad Austin
2014-05-21checkpoint returning JS instances out of embindChad Austin
2014-05-21Support deriving from abstract classes with constructorsChad Austin
2014-05-21give a good error message when a pure virtual function is not implemented in ↵Chad Austin
JavaScript
2014-05-21Remove .implement from the public APIChad Austin
2014-05-21pass jshintChad Austin
2014-05-21make optional methods workChad Austin
2014-05-21properties set in constructor persist to methodsChad Austin
2014-05-21instanceof passesChad Austin
2014-05-21can extend, construct, and deleteChad Austin
2014-05-21Add a hack to SDL audio backend that lets user code to control which audio ↵Jukka Jylänki
files are played back with <audio> element and which are played back with Web Audio.
2014-05-21Don't allow exceptions in SDL audio backend with Web Audio to leak and abort ↵Jukka Jylänki
rAF loops.
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 .