aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-01-29release 1.10.01.10.0Alon Zakai
2014-01-28disable asm2x86.test_exceptions_2Alon Zakai
2014-01-28run js opts for safe heapAlon Zakai
2014-01-28fix fastcomp detection; fixes #2072Alon Zakai
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-28fix find_bigis.py toolAlon Zakai
2014-01-27EM_ASM_ variants that return a value but receive no inputs; fixes #2070Alon Zakai
2014-01-27commentAlon Zakai
2014-01-27fix some safeHeap errors with the new exceptions code; fixes #2068Alon Zakai
2014-01-27add testcase with longjmp and c++ exception catching in the same functionAlon Zakai
2014-01-27improve mem init help text; fixes #2066Alon Zakai
2014-01-27finish precompiled headers test; fixes #2045Alon Zakai
2014-01-27silence poppler stdout output, so it is suitable as a benchmarkAlon Zakai
2014-01-26support precompiled headers; fixes #2045Alon Zakai
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-26add responsive mode to box2d benchmarkAlon Zakai
2014-01-26Merge pull request #2056 from jamesu/openal_t2d_fixesjuj
Openal t2d fixes
2014-01-25do more parallel work in js optimizerAlon Zakai
2014-01-25improve sqlite benchmarkingAlon Zakai
2014-01-25improve box2d benchmarkingAlon Zakai
2014-01-25make emscripten_get_now work in native builds, because what is otherwise a ↵Alon Zakai
convenient way to just get timing info in ms using a simple libc call?
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-24Merge pull request #2057 from juj/relooper_linkage1.9.5Alon Zakai
Fix inconsistent linkage warnings from Visual Studio caused by mismatched dllexport specifiers.
2014-01-25Bump version to 1.9.5 to cause relooper to rebuild after previous change.Jukka Jylänki
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-24Add myself to AUTHORSJames Urquhart
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-24Merge pull request #2052 from juj/test_float_literalsAlon Zakai
Add test for storing special float literals in source code.
2014-01-24Add test for storing special float literals in source code. Currently fails ↵Jukka Jylänki
in fastcomp.
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-23Merge pull request #2046 from rfk/rfk/registerize-harder-followupsAlon Zakai
Some follow-up fixes to registerizeHarder
2014-01-23Merge pull request #2051 from inolen/invalidate_buffer_supportAlon Zakai
use correct bufferData method when passing a NULL pointer
2014-01-23rename filePackageURL to filePackagePrefixURLAlon Zakai
2014-01-23use correct bufferData method when passing a NULL pointerAnthony Pesch
2014-01-23allow adding a custom prefix to file package downloads, so they can happen ↵Alon Zakai
from a different url; fixes #2049
2014-01-23export the runtime; fixes #2041Alon Zakai
2014-01-23better error reporting on errors in js libraries; fixes #2033Alon Zakai
2014-01-23Add TODO about more permissive label handling in registerizeHarderRyan Kelly
2014-01-23Simplify handling of switch statements in registerizeHarder.Ryan Kelly
It now assumes they're of the very restricted for that's actually produced by emscripten, which both simplified the code and uncovered opportunities for further register reduction in a testcase.