aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
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
2014-03-04explain EXPORTED_FUNCTIONS betterAlon Zakai
2014-03-03Merge branch 'allow_multiple_worker_responses' of ↵Alon Zakai
github.com:virusdave/emscripten into incoming Conflicts: AUTHORS
2014-03-03Allow multiple worker responses (via messages) if desired.Dave Nicponski
Add unit test for multiple worker responses. Test command: python tests/runner.py browser.test_worker_api_3 Add self to authors file.
2014-03-03Merge pull request #2151 from haneefmubarak/cleanupAlon Zakai
cleanup series I - part I
2014-03-03add canvas.style.setProperty in headlessCanvasAlon Zakai
2014-03-03Strict: There is no global this.Bruce Mitchener
2014-03-03Strict: Don't define functions within conditional.Bruce Mitchener
2014-03-01mention ASSERTIONS in abort() callsAlon Zakai
2014-02-28fix some whitespaceAlon Zakai
2014-02-28Merge branch 'incoming' of ↵Alon Zakai
github.com:DerKoun/emscripten-fullscreen-improvements into incoming Conflicts: AUTHORS
2014-02-28Full screen fixes (aspect ratio & IE11) & AR optDerKoun
Full screen image now has correct aspect ratio (parent of canvas is full screen root, canvas size is adapted via styles). Full screen now works properly in Internet Explorer 11. It is now possible to optionally force a specific aspect ratio for the canvas (canvas size is adapted via styles, ratio for now has to be set manually in compiled JS).
2014-02-28fix glCompressedTexSubImage2D; fixes #2173Alon Zakai
2014-02-27Fix bug that caused emscripten_get_callstack to not truncate the output ↵Jukka Jylänki
buffer. Add test. Closes #2171.
2014-02-26make sdl canvas copy warning a one-time thing; fixes #2167Alon Zakai
2014-02-26Merge pull request #2165 from juj/fs_element_size1.12.3Alon Zakai
Fullscreen element sizes
2014-02-26use le32 target when fastcomp is disabled, so we do not need a fastcomp ↵Alon Zakai
build, and also fixes sqlite test
2014-02-26Merge pull request #2157 from rfk/rfk/fileno-error-reportingAlon Zakai
Ensure that fileno() returns -1 when given an invalid file pointer.
2014-02-26Add new fields to EmscriptenFullscreenChangeEvent structure that report the ↵Jukka Jylänki
new pixel sizes of the fullscreen element, as well as the whole screen size. These can be used to read and adjust the rendering canvas size appropriately when transitioning between fullscreen modes. Thanks to Joel Croteau for the suggestion at https://groups.google.com/forum/#!topic/emscripten-discuss/qaTrOXWv1Oc . Bump version to 1.12.3 to update the cache after change to struct_info.json.
2014-02-26Ensure that fileno() returns -1 when given an invalid file pointer.Ryan Kelly
2014-02-25Merge branch 'NiCoX' of github.com:patchanka/emscripten into incomingAlon Zakai
Conflicts: AUTHORS
2014-02-25do not warn on undefined symbols for things that are mere js lib ↵Alon Zakai
dependencies, and not things we know are actually missing (they may be provided by a C implementation); fixes #2154