aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2014-03-28fix SDL bug where freeing the surface screen did not work properlyAlon Zakai
2014-03-24Merge pull request #2236 from waywardmonkeys/remove-invalid-type-info-destructorAlon Zakai
Remove empty std::type_info destructor.
2014-03-24fix caching of asm const strings; fixes #2253Alon Zakai
2014-03-22do not warn on missing emscripten_ functionsAlon Zakai
2014-03-18Merge pull request #2241 from Noxalus/incomingAlon Zakai
Complete the list of properly supported keys
2014-03-18Complete the list of properly supported keysNoxalus
Sort the key code and scan code maps by key and add many missing keys.
2014-03-18Remove empty std::type_info destructor.Bruce Mitchener
This is provided by libcxxabi and there are actually 3 different destructors, not just this one, so let things pick up libcxxabi correctly.
2014-03-17make simplifyIfs a settings optionAlon Zakai
2014-03-17comment on outlining downsidesAlon Zakai
2014-03-17add another if testcase in relooperAlon Zakai
2014-03-17Merge pull request #2020 from fadams/improve-websocket-config-optionsAlon Zakai
Provide compile time and run time options for WebSocket URL and subproto...
2014-03-17Merge pull request #2234 from Noxalus/incomingAlon Zakai
Fix numepad 0 key and add few other keys
2014-03-17Merge pull request #2228 from Daft-Freak/patch-1Alon Zakai
Add stub for raise
2014-03-17Set errno and return -1Charlie Birks
2014-03-17fix relooper testAlon Zakai
2014-03-17Return error in raiseCharlie Birks
2014-03-17Fix numepad 0 key and add few other keysNoxalus
The scan code of the numepad 0 key is 98, not 88 since that correspond to the scan code of KP_ENTER. I took the opportunity to add the missing numepad keys like KP_PLUS, KP_MULTIPLY, etc... Some other keys like caps lock weren't properly detected either.
2014-03-16Merge pull request #2229 from Daft-Freak/patch-2juj
Add eglWaitGL
2014-03-16Fix unregistering of event handlers (all params of removeEventListener must ↵Jukka Jylänki
*exactly* match the signature used in registration, up to useCapture) and a closure name rename problem. Fixes #2230.
2014-03-15fix commented-out relooper codeAlon Zakai
2014-03-15Add eglWaitGLCharlie Birks
2014-03-15Add stub for raiseCharlie Birks
2014-03-14add a Nested branch type in relooper, to represent a path we must make sure ↵1.13.2Alon Zakai
is nested so that parallel paths do not get intertwined. this allows us to emit a more canonical form of nested ifs as a result of short-circuit operators; 1.13.2
2014-03-14Merge pull request #2224 from juj/osx_mouseAlon Zakai
OSX mouse support.
2014-03-14Fix typo in comment.Jukka Jylänki
2014-03-14Fix OpenAL library to work with old Web Audio API syntax that exists in ↵Jukka Jylänki
Safari 6.0.5 at least.
2014-03-14Fix SDL Web Audio to work on Safari 6.0.5. That browser does not implement ↵Jukka Jylänki
the AudioBufferSourceNode.start() method, but only has the older .noteOn() method, and the audio ctors don't come out as functions, but strongly typed ctor objects.
2014-03-13Implement support for Webkit mouse wheel events. Add new interactive mouse ↵Jukka Jylänki
test. Checked on OSX Safari 6.0.5. Fixes #2219.
2014-03-13Manually implement mouse movementXY in HTML5 mousemove events when the ↵Jukka Jylänki
browser does not provide the data. Fixes part 2) from issue #2219.
2014-03-13Fix typo with missing parentheses from previous commit that broke keyevents ↵Jukka Jylänki
from performing deferred fullscreen/pointerlock requests.
2014-03-12Fix IE fullscreen requests to not run in mousedown events, since IE doesn't ↵Jukka Jylänki
allow them. Related to #2219.
2014-03-11improve demangler a littleAlon Zakai
2014-03-11Implement a IE10+ specific path to emscripten_get_callstack to get the call ↵Jukka Jylänki
stack information. In IE, callstacks are populated only when an exception object is thrown. Closes #2212.
2014-03-10fix mouse wheel deltas for closure compiler in html5 API, and add some ↵Alon Zakai
closure testing; #2214
2014-03-10forward CLOSURE_COMPILER to settings, and use that to avoid a ↵Alon Zakai
closure-specific workaround for Module detection; fixes #2209
2014-03-10Merge branch 'patch-1' of github.com:ddiproietto/emscripten into incomingAlon Zakai
Conflicts: AUTHORS
2014-03-09add some text to safe heap assertsAlon Zakai
2014-03-08Fix GLFW ESC keyDaniele Di Proietto
GLFW_KEY_ESC is defined to GLFW_KEY_SPECIAL+1 (257) in system/include/GL/glfw.h.
2014-03-07Implement emscripten_async_wget2_dataJoel Croteau
This adds the new function emscripten_async_wget2_data to read from an XMLHTTPRequest directly into memory while supporting advanced features.
2014-03-07todo about TextEncoderAlon Zakai
2014-03-07Merge branch 'master' of github.com:Noxalus/emscripten into incomingAlon Zakai
Conflicts: AUTHORS
2014-03-06show logging about preload/pre-main time even without a mainAlon Zakai
2014-03-06Update closure-externs.jsNoxalus
Add a gamepad support with closure.
2014-03-05remove stale dependencies in openalAlon Zakai
2014-03-05throttle glut requestAnimationFrames; fixes #2183Alon Zakai
2014-03-06Fixed full screen closing immediatelyDerKoun
Fixed full screen closing immediately because of canvas container not being defined.
2014-03-05Add EXT_shader_texture_lod to trivially supported extensionsVladimir Vukicevic
2014-03-05emscripten_debugger()Alon Zakai
2014-03-05Allow going fullscreen in response to mousedown eventsjonas echterhoff
2014-03-05Merge commit '0ec7107' into HEADAlon Zakai