aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2014-02-02support EXCEPTION_CATCHING_WHITELIST in fastcompAlon Zakai
2014-02-01fix for FS.utime parametersAnthony Pesch
2014-02-01make sure RAND_MAX is a proper valueAlon Zakai
2014-02-01Fix indentation in the comments added in the previous commit.Jukka Jylänki
2014-02-01Restrict touch events to not run deferred fullscreen+pointerlock requests ↵Jukka Jylänki
due to security implications. Mark down related bugzilla entry.
2014-02-01Add support for detecting whether screen orientation lock succeeds or fails. ↵Jukka Jylänki
Current testing suggests that Firefox Nightly on Android does not support orientation lock. See https://bugzilla.mozilla.org/show_bug.cgi?id=966480 .
2014-01-31Merge pull request #2079 from inolen/fs_unmountAlon Zakai
fs unmount support
2014-01-31make sure rand() returns values only up to RAND_MAX; #18551.10.1Alon Zakai
2014-01-31further fix for #1407Alon Zakai
2014-01-30headless fixAlon Zakai
2014-01-30added basic unmount supportAnthony Pesch
don't emit syncfs callback multiple times error when mounting to an existing mountpoint
2014-01-30Merge pull request #2080 from inolen/idbfs_updatesAlon Zakai
idbfs updates
2014-01-30asmify randAlon Zakai
2014-01-30asmify rand_rAlon Zakai
2014-01-30use Math.imul in rand_rAlon Zakai
2014-01-30use all 32 bits in rand_rAlon Zakai
2014-01-30misc cleanupsAlon Zakai
2014-01-30Merge branch 'rand' of github.com:coolwanglu/emscripten into incomingAlon Zakai
2014-01-30fix exceptions whitelist check on invoke using function pointer; fixes #2081Alon Zakai
2014-01-30don't leak streams in readFile and writeFileAnthony Pesch
don't invoke multiple callbacks when idbfs sync errors added canOwn option to writeFile updated idbfs sync to specify canOwn when writing to the local fs reworked idbfs sync to use an index with openKeyCursor to avoid deserializing all values when getting the set members
2014-01-29remove obsolete sig param to sign/unSignAlon Zakai
2014-01-29Merge pull request #2065 from Daft-Freak/alAlon Zakai
AL improvements
2014-01-29fix locale-removing aliases that break because they then have the wrong sig; ↵Alon Zakai
fixes #2076
2014-01-28rely on js opts to do safe heap for asm, to avoid duplicating logic for ↵Alon Zakai
proper asm ffi coercions
2014-01-28add alGetBufferiCharlie Birks
2014-01-28alcGetIntegerv fixesCharlie Birks
2014-01-28improve alcGetStringCharlie Birks
2014-01-28alGetString fixes from reviewCharlie Birks
2014-01-27fix some safeHeap errors with the new exceptions code; fixes #2068Alon Zakai
2014-01-27improve alGetStringCharlie Birks
2014-01-27add alcGetIntegervCharlie Birks
2014-01-27add alIsSourceCharlie Birks
2014-01-26Merge pull request #2061 from inolen/openal_fixAlon Zakai
fix variable name in alListenerfv
2014-01-26fix variable name in alListenerfvAnthony Pesch
2014-01-26Merge pull request #2042 from waywardmonkeys/exception-fixesAlon Zakai
Start tracking exception data in a header.
2014-01-26do not include library i64 stuff in side modules, it is in the parent; fixes ↵Alon Zakai
#2060
2014-01-26Merge pull request #2056 from jamesu/openal_t2d_fixesjuj
Openal t2d fixes
2014-01-25Add get&set for source direction and cone valuesJames Urquhart
2014-01-25Use correct index for alIsBufferJames Urquhart
2014-01-25Use correct error handling for new OpenAL functionsJames Urquhart
2014-01-25Fix inconsistent linkage warnings from Visual Studio caused by mismatched ↵Jukka Jylänki
dllexport specifiers. Both definition and declaration need to have dllexport present, and added RELOOPERDLL_EXPORTS define to the .cpp file so it always sees the dllexport version instead of dllimport.
2014-01-24spinner during startup; #2050Alon Zakai
2014-01-24Implement alGetSourcefvJames Urquhart
2014-01-24Implement basic stub for alEnable & alDisableJames Urquhart
2014-01-24Implement alIsBufferJames Urquhart
2014-01-24Implement listener gain & get functions for OpenALJames Urquhart
2014-01-24Merge pull request #2035 from juj/html5_events1.9.4Alon Zakai
HTML5 Events API.
2014-01-24Rename library_events to library_html5 and other suggested renamings. Add ↵Jukka Jylänki
better support for reporting EMSCRIPTEN_RESULT_NOT_SUPPORTED for unsupported features.
2014-01-24Improve C++ exception handling.Bruce Mitchener
We now allocate extra bytes before the exception data and use that, rather than globals, to store the exception type and destructor information. This is step one towards having multiple exceptions in flight at once. We also track what exceptions are currently being caught in a stack maintained in __cxa_begin_catch and __cxa_end_catch. This is used for ensuring that we handle nested exception catch blocks correctly.
2014-01-23use correct bufferData method when passing a NULL pointerAnthony Pesch