aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
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
2014-01-23export the runtime; fixes #2041Alon Zakai
2014-01-23better error reporting on errors in js libraries; fixes #2033Alon Zakai
2014-01-22Merge pull request #1905 from juj/glGetTexEnvAlon Zakai
Gl get tex env
2014-01-22fix some sdl typos that error on safe heap in asm mode, and add test ↵Alon Zakai
coverage; fixes #2044
2014-01-22some headless additionsAlon Zakai
2014-01-22eliminate llvm_prefetch; fixes #2043Alon Zakai
2014-01-22fastcomp updates and a test for fptosi|ui on floats and doublesAlon Zakai
2014-01-22avoid unresolved symbol warnings on misc funcs in fastcompAlon Zakai
2014-01-22Implement C-based events library for various HTML5 APIs.Jukka Jylänki
2014-01-22Fix default vertex color to (1,1,1,1) and properly enable correct attribute ↵Jukka Jylänki
streams when doing immediate mode rendering when GL_FFP_ONLY is set.
2014-01-20Merge pull request #2037 from waywardmonkeys/updates5Alon Zakai
Updates 5
2014-01-21Move workaround for emscripten from include/exception to library.js.Bruce Mitchener
2014-01-20fix longjmp call by pointer in fastcomp, and enable test_longjmp2Alon Zakai
2014-01-20Remove unused _Unwind_* functions.Bruce Mitchener
2014-01-19remove obsolete assertionAlon Zakai
2014-01-19better error message for asm.js not supporting growable heap yetAlon Zakai
2014-01-18improve EM_ASM to tolerate quotes when safe, and error when not; fixes #2032Alon Zakai
2014-01-18Merge pull request #2030 from waywardmonkeys/updates4Alon Zakai
Updates 4
2014-01-18handle #if !X in preprocessorAlon Zakai
2014-01-18Merge pull request #2031 from juj/fix_glemu_enabledisableAlon Zakai
Fix glemu enabledisable
2014-01-18Fix GL emulation cleanup to properly update the state it changes.Jukka Jylänki
2014-01-18Fix FFP GL emulation directives. The form !GL_FFP_ONLY is not supported, use ↵Jukka Jylänki
GL_FFP_ONLY == 0 instead.
2014-01-18Implement catopen/catgets/catclose to help libcxx tests pass.Bruce Mitchener
2014-01-18No need for 64 bit aliases for theseBruce Mitchener
2014-01-18Remove unused aliases.Bruce Mitchener
2014-01-17add missing ;Alon Zakai
2014-01-17handle unsigned reads in safe heapAlon Zakai
2014-01-17add missing ;sAlon Zakai
2014-01-17add missing ;Alon Zakai
2014-01-17remove current memory initialization chunking via .concat(..)Alon Zakai
2014-01-17Fix GL_FFP_ONLY path to enable/disable vertex attribute arrays as a response ↵Jukka Jylänki
to glEnable/DisableClientState instead of adjusting that during rendering.
2014-01-16Merge branch 'remove-01-aliases' of github.com:waywardmonkeys/emscripten ↵Alon Zakai
into incoming
2014-01-16fix strnlen input of size, which should be unsignedAlon Zakai