aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2012-06-05Added a helper function emscripten_set_canvas_size function which allows to ↵Jukka Jylänki
resize the <canvas> element on the web page in 'generic' fashion without having to depend on SDL or X11 headers in C code. This function is intended to be used in conjunction with EGL to specify a custom pixel resolution for the canvas (EGL API does not have expressiveness to do arbitrary pixel sizes).
2012-06-04Added stubs for eglQuerySurface and eglGetError implementations.Jukka Jylänki
2012-05-31do not do GL immediate mode emulation if a 2D context is being used, even if ↵Alon Zakai
compiled with emulation
2012-05-30properly identify function pointers that return things like [64 x i16]*Alon Zakai
2012-05-30Merge pull request #450 from caiiiycuk/openttdAlon Zakai
strndump function implementation
2012-05-29Fix behavior strndup whern size <= 0, in this case strndup returns empty stringAleksander Guryanov
2012-05-28fix string detection regexp and add testAlon Zakai
2012-05-28throw on writes to absolute memory addresses; fixes #451Alon Zakai
2012-05-28Fix size of new string (0 +1->size +1)Aleksander Guryanov
2012-05-28Add implementation of strndup function and test for itAleksander Guryanov
2012-05-26fix strtod behavior on non-intsAlon Zakai
2012-05-25allow - in globals, aliases and typesAlon Zakai
2012-05-24make fgetc return the char value as unsigned (in a signed int)Alon Zakai
2012-05-24Merge pull request #435 from ehsan/sdlmouseAlon Zakai
Fix the SDL mouse motion events
2012-05-23Stub a few more gl functionsEhsan Akhgari
These are useful for fog implementation, which we can look into implementing in the future.
2012-05-22Save the state of the mouse button as we're creating a C event for itEhsan Akhgari
2012-05-22Fix the SDL mouse motion eventsEhsan Akhgari
2012-05-18WARN_ON_UNDEFINED_SYMBOLSAlon Zakai
2012-05-18sdl backtickAlon Zakai
2012-05-18ignore module asm, in some cases it is ok to do so, but warnAlon Zakai
2012-05-16ignore GL_FOG_ENDAlon Zakai
2012-05-16ignore GL_FOG_STARTAlon Zakai
2012-05-16fix invalid characterAlon Zakai
2012-05-16Fix the incorrect initial value of GL.immediate.currentMatrixEhsan Akhgari
2012-05-15Merge pull request #428 from ehsan/fixesAlon Zakai
A bunch of random fixes
2012-05-15browser gc testAlon Zakai
2012-05-15Stub glAlphaFuncEhsan Akhgari
It's not implemented for now...
2012-05-15Fix IMG_Load to work with absolute pathsEhsan Akhgari
2012-05-15Make FS_LOG work againEhsan Akhgari
Use Module.print, since the print function doesn't seem to be accessible any more for some reason. Without this, enabling FS_LOG causes the browser's print UI to be invoked, which is pretty bad!
2012-05-15Make glHint accept two argumentsEhsan Akhgari
2012-05-15Implement glOrthofEhsan Akhgari
2012-05-15fix test_gc for o1 and o2Alon Zakai
2012-05-15working early gc testAlon Zakai
2012-05-15further gc work, basic api writtenAlon Zakai
2012-05-15initial work on c++ gc supportAlon Zakai
2012-05-14emscripten_get_nowAlon Zakai
2012-05-14warn on loss of webgl contextAlon Zakai
2012-05-14allow nonexistent phis in another location + add testAlon Zakai
2012-05-14allow nonexistend phi labels, llvm generates unneeded ones sometimesAlon Zakai
2012-05-14more glEnable/Disable emulation ignoresAlon Zakai
2012-05-14more glColor implementationsAlon Zakai
2012-05-14handle cancel in window.promptAlon Zakai
2012-05-14do not fail on -fcatch-undefined-behaviorAlon Zakai
2012-05-14restore previous element array buffer, not 0, if we replaced it during flushAlon Zakai
2012-05-13fix active client attribute counting and add testAlon Zakai
2012-05-13unbind element array buffer if we bound oneAlon Zakai
2012-05-13fix order in gl_ModelViewProjectionMatrix and add working cube_explosion testAlon Zakai
2012-05-13misc tweaks and add wip cube_explosion testAlon Zakai
2012-05-12clear status in html even if doRun exits through an exceptionAlon Zakai
2012-05-12show Running... when calling run()Alon Zakai