aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-07-12Work around Safari image loading bug. Closes #1130.Jez Ng
2013-07-11Merge pull request #1362 from dtc/obj-nameAlon Zakai
Replace the 'scan' function, which maps a WebGL object to anassociated integer id, with a 'name' property stored on the object. The linear scan was rather slow, and as the vector grew in size games were slowing to a few fps.
2013-07-11Merge pull request #1354 from fhd/fix-gc-pausesAlon Zakai
Fix GC pauses by reusing canvas elements
2013-07-11Add missing bracesFelix H. Dahlke
2013-07-11Document canvasPoolFelix H. Dahlke
2013-07-10Merge pull request #1363 from dtc/sdl-touchAlon Zakai
Add basic touch support that translates to mouse events.
2013-07-11glGenTextures: correct the setting of the object name.Douglas T. Crosher
2013-07-11Add Douglas Crosher to the AUTHORS file.Douglas T. Crosher
2013-07-11Update the AUTHORS file, and address some code style issues.Douglas T. Crosher
2013-07-10Merge pull request #1365 from int3/syobonAlon Zakai
Add sdl_gfx_primitives.c to git.
2013-07-10Add sdl_gfx_primitives.c to git.Jez Ng
2013-07-10Merge pull request #1364 from int3/syobonAlon Zakai
Bunch of SDL fixes that are needed for running Open Syobon Action.
2013-07-10Add comment.Jez Ng
2013-07-10Cast signedness in library_SDL functions.Jez Ng
2013-07-10Wrap gfx helpers in a $SDL_gfx object.Jez Ng
2013-07-10Add (failing) test for gfx primitives.Jez Ng
2013-07-10Avoid noisy error logs.Jez Ng
2013-07-10Add workaround for FF.Jez Ng
2013-07-10Implement ellipse drawing and refactor rect code.Jez Ng
2013-07-10Fix negative surface zooming.Jez Ng
2013-07-10Add basic touch support that translates to mouse events.Douglas T. Crosher
2013-07-10* Replace the 'scan' function, which maps a WebGL object to anDouglas T. Crosher
associated integer id, with a 'name' property stored on the object. The linear scan was rather slow, and as the vector grew in size games were slowing to a few fps.
2013-07-09outliner todoAlon Zakai
2013-07-09Merge branch 'lint' of github.com:int3/emscripten into incomingAlon Zakai
2013-07-09Bunch of changes to support Syobon Action.Jez Ng
2013-07-09work on outlining control flowAlon Zakai
2013-07-09only remove unneeded arguments based on library sigs for llvm intrinsics ↵Alon Zakai
(which cannot be aliased by user functions)
2013-07-09replace &-1 with |0 at the end of the optimization pipelineAlon Zakai
2013-07-09use |0 to coerce in div/rem, no need for >>>0Alon Zakai
2013-07-09analyze escaping breaks and continues in outlined codeAlon Zakai
2013-07-08add one-time loop when we need to handle control flow in outlined functionsAlon Zakai
2013-07-08analyze code flow in outlined codeAlon Zakai
2013-07-08outline test does not pass yet, disable itAlon Zakai
2013-07-08recurse into outlined functionsAlon Zakai
2013-07-08do not outline too-big a chunk out of a functionAlon Zakai
2013-07-08Remove semicolons from Python code.Jez Ng
2013-07-08Avoid using exec where possible.Jez Ng
2013-07-08Merge branch 'incoming' of github.com:kripken/emscripten into incomingAlon Zakai
2013-07-08Merge pull request #1355 from sunfishcode/incomingAlon Zakai
Incoming
2013-07-08add read/writes in outlined functionsAlon Zakai
2013-07-08add variable info to outlined functionsAlon Zakai
2013-07-08generate functions for split-out codeAlon Zakai
2013-07-08read results from outlined codeAlon Zakai
2013-07-08Use implicit range in for loops where possible.Jez Ng
2013-07-08emit statements in outliningAlon Zakai
2013-07-08start to emit spillsAlon Zakai
2013-07-08testing for existing sp in outlinerAlon Zakai
2013-07-08infrastructure to analyze functions and variables in outlinerAlon Zakai
2013-07-08start to outline codeAlon Zakai
2013-07-08outlining tweaksAlon Zakai