aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2013-04-05refactor preRun additionsAlon Zakai
2013-04-05ensure runtime initialized when dependencies have arrived, including the ↵Alon Zakai
memory initializer
2013-04-05use a separate memory initialization fileAlon Zakai
2013-04-05support reading binary data in the shell/nodeAlon Zakai
2013-04-05fix xhrs for file URLsAlon Zakai
2013-04-05refactor runtime initializationAlon Zakai
2013-04-05allow calling callMain even if run() was not calledAlon Zakai
2013-04-05initialize runtime from run() (asynchronously, if run is asynchronous)Alon Zakai
2013-04-04detect file suffixes of all lengthsAlon Zakai
2013-04-04fixAlon Zakai
2013-04-04Merge pull request #1006 from azmeuk/masterAlon Zakai
Basic GLFW support
2013-04-04pre-apply {{{ FI_* }}} as wellAlon Zakai
2013-04-04pre-apply simple postSetsAlon Zakai
2013-04-04do not emit the memory initialization into itselfAlon Zakai
2013-04-04refactor slab writing in makePointerAlon Zakai
2013-04-04be less sillyAlon Zakai
2013-04-04make sure allocate() types have the same length as the slabAlon Zakai
2013-04-04fix s_x_xAlon Zakai
2013-04-04always flatten out ta2 allocate()ionsAlon Zakai
2013-04-04write out all the initial global allocations as one big ALLOC_NONEAlon Zakai
2013-04-04ensure aligned sizes for all constantsAlon Zakai
2013-04-04refactor chunkifying in makePointerAlon Zakai
2013-04-04refactor vtable extensionAlon Zakai
2013-04-04compress in makePointer only in non-ta2, in preparation for consolidating ↵Alon Zakai
all ta2 allocations
2013-04-04* Spaces and indentation.Éloi Rivard
2013-04-04* Indentation and brackets.Éloi Rivard
2013-04-04Update AUTHORSÉloi Rivard
2013-04-04* Added glfw headers and testcases.Éloi Rivard
2013-04-04* Header.Éloi Rivard
2013-04-04* Fixed mouse position.Éloi Rivard
2013-04-04* Disabled setMousePos in library_glfw.Éloi Rivard
2013-04-04* OpenGL extensions.Éloi Rivard
2013-04-04* Minor fix.Éloi Rivard
2013-04-04* Added a test.Éloi Rivard
* Mouse events are ok. * Keyboard events work partially.
2013-04-04* Misc functions.Éloi Rivard
2013-04-04* Edited tests so they use emscripten_main_loop.Éloi Rivard
* Got triangle test about to work. * Implemented misc functions.
2013-04-04* Added glfw headers and testcases.Éloi Rivard
2013-04-03refactor/simplify constant generationAlon Zakai
2013-04-03Merge pull request #1015 from fhd/incomingAlon Zakai
Support rotozoomSurface
2013-04-01fix externals handling: non-library elements need nothing at all, so runtime ↵Alon Zakai
linking works
2013-04-01simplify and unify handling of externalsAlon Zakai
2013-03-31differentiate better the ambiguous case of llvm call (where the type can be ↵Alon Zakai
either just the return type, or the entire function type): ** and above are certainly just the return type
2013-03-31check both original short ident and redirected ident for being a library ↵Alon Zakai
function, so redirects to Math.* work
2013-03-31invalidate renderers using strideAlon Zakai
2013-03-31GL_UNSAFE_OPTS tweaksAlon Zakai
2013-03-31do not fix offsets in renderers; fixes test_gl_renderersAlon Zakai
2013-03-31fix attribute offsets when they start at >0 and there is an array bufferAlon Zakai
2013-03-31do not fix stride in renderersAlon Zakai
2013-03-30rephrase commentAlon Zakai
2013-03-30Support rotozoomSurfaceFelix H. Dahlke