aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2013-07-12Merge pull request #1373 from int3/safari-blobsAlon Zakai
Fix image loading in Safari.
2013-07-12Add bug number to comment.Jez Ng
2013-07-12only push proper canvases to canvas poolAlon Zakai
2013-07-12Simplify ArrayBuffer copy.Jez Ng
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-11Update the AUTHORS file, and address some code style issues.Douglas T. Crosher
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-09Bunch of changes to support Syobon Action.Jez Ng
2013-07-09only remove unneeded arguments based on library sigs for llvm intrinsics ↵Alon Zakai
(which cannot be aliased by user functions)
2013-07-09use |0 to coerce in div/rem, no need for >>>0Alon Zakai
2013-07-08begin work on outliner pass to break up large functions. part 1: aggressive ↵Alon Zakai
variable elimination, to reduce spilling
2013-07-08Fix GC pauses by reusing canvas elementsFelix H. Dahlke
2013-07-07rename __stackbase__ to spAlon Zakai
2013-07-07comment on ccall array type being 8 bitAlon Zakai
2013-07-03Merge pull request #1341 from inolen/pointer_stringify_hangAlon Zakai
assert on bad pointer in Pointer_stringify
2013-07-03parse i64-to-ptr conversions of constants at compile timeAlon Zakai
2013-07-03stop emitting no-longer-needed alias constantsAlon Zakai
2013-07-03run postSets in a global initializer, before all other global initializersAlon Zakai
2013-07-03emit F_BASEAlon Zakai
2013-07-03refactor getIndex calls to include the signatureAlon Zakai
2013-07-03mark internal globals as private as wellAlon Zakai
2013-07-03fix relocation of global linkable variables, enable iostream module linking testAlon Zakai
2013-07-03add a naming to globals that can be linked and used across modulesAlon Zakai
2013-07-03add various aborting stubs for libc stuff used in libc++Alon Zakai
2013-07-03coerce in cmpxchgAlon Zakai
2013-07-03include fastLong in FULL_LIBRARYAlon Zakai
2013-07-03clone aliased functions in shared modulesAlon Zakai
2013-07-03standardize global initializers syntaxAlon Zakai
2013-07-03begin work on memory relocationAlon Zakai
2013-07-03ifdef out gl emulation when disabledAlon Zakai
2013-07-03DISABLE_GL_EMULATION optionAlon Zakai
2013-07-03initial setupAlon Zakai
2013-07-01assert on bad pointer in Pointer_stringifyAnthony Pesch
2013-07-01Merge pull request #1335 from inolen/module_exportsAlon Zakai
Module export improvements