aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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-15don't needlessly add empty nodes in asm normalization/denormalizationAlon Zakai
2014-03-15remove empty subnodes after aggressive variable eliminationAlon Zakai
2014-03-15remove empty subnodes after vacuumAlon Zakai
2014-03-15remove empty subnodes after eliminateAlon Zakai
2014-03-15fix commented-out relooper codeAlon Zakai
2014-03-15Add eglWaitGLCharlie Birks
2014-03-15Add stub for raiseCharlie Birks
2014-03-14add -profiling optionAlon Zakai
2014-03-14test for bad triple warningAlon Zakai
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-14Add better documentation to emscripten/html5.h KeyEvent structure on the ↵Jukka Jylänki
current implementation and deprecation status of the various fields. See also pr #2222.
2014-03-14Merge pull request #2225 from juj/safari_webaudioAlon Zakai
Safari 6.0.5 webaudio fixes in SDL and OpenAL library.
2014-03-14Fix typo in comment.Jukka Jylänki
2014-03-14Make tests/openal_playback.cpp compilable outside the test runner.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-14Add an automated version of the html5 mouse test in browser test suite.Jukka Jylänki
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-12Register mouse callbacks in test_html5_fullscreen.c sample so that it can be ↵Jukka Jylänki
tested on IE as well.
2014-03-12Make tests/test_html5_fullscreen.c standalone-compilable outside test suite.Jukka Jylänki
2014-03-11improve demangler a littleAlon Zakai
2014-03-11improve CHECK_HEAP_ALIGN messageAlon Zakai
2014-03-11Updated ChangeLog to latest.Jukka Jylänki
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-11Clean up warnings in emscripten_log test.Jukka Jylänki
2014-03-10fix mouse wheel deltas for closure compiler in html5 API, and add some ↵Alon Zakai
closure testing; #2214
2014-03-10add test for odin validationAlon Zakai
2014-03-10add -w to spidermonkey to see odin warningsAlon Zakai
2014-03-10avoid llvm-dis when using save-bc in fastcompAlon Zakai
2014-03-10restore some closure testingAlon Zakai
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-101.13.11.13.1Alon Zakai
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-08add aliases testcaseAlon Zakai
2014-03-08Added myself to AUTHORSDaniele Di Proietto
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-07fix C syntax in html5.hAlon Zakai
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-07Merge pull request #2202 from abergmeier/fix_addressAlon Zakai
Correct my email address.
2014-03-07Merge pull request #2206 from juj/fix_osx_test_preload_fileAlon Zakai
Resolve symbolic links when checking for destination locations in file_packager. Fixes browser.test_preload_file on OSX.
2014-03-07more work on hackish function removal using profilingAlon Zakai
2014-03-07todo about TextEncoderAlon Zakai
2014-03-07Merge branch 'master' of github.com:Noxalus/emscripten into incomingAlon Zakai
Conflicts: AUTHORS
2014-03-07Support syntax --preload-file x@x where both sides are identical and outside ↵Jukka Jylänki
the current source tree. The code would accidentally treat that case as if user had instead written '--preload-file x'. Closes #2201.