aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2013-03-20improve error messageAlon Zakai
2013-03-20abort compilation if there are unresolved in asm.js, after showing them allAlon Zakai
2013-03-20do not exist runtime if simulating an infinite loopAlon Zakai
2013-03-20do not show the simulate-infinite-loop exceptionAlon Zakai
2013-03-20remove CATCH_EXIT_CODE and make it the default behaviorAlon Zakai
2013-03-20add exception debug warning on resume 0Alon Zakai
2013-03-20Merge pull request #972 from waywardmonkeys/fix-resume-undefAlon Zakai
When there's no exception, just drop the resume.
2013-03-20Implement alcGetErrorEhsan Akhgari
2013-03-20Remove two other workaroundsEhsan Akhgari
2013-03-20Revert "Work around two Firefox bugs"Ehsan Akhgari
This reverts commit 0dd0d506f77e981258dad30e916c95daeb4aef13. Conflicts: src/library_openal.js
2013-03-20alcGetErrorAlon Zakai
2013-03-20refactor Browser initializationAlon Zakai
2013-03-20Remove border from canvasVladimir Vukicevic
2013-03-20Merge pull request #982 from ehsan/openalAlon Zakai
Fix a bunch of makeSetValue calls in the OpenAL backend
2013-03-20Fix a bunch of makeSetValue calls in the OpenAL backendEhsan Akhgari
2013-03-20Merge pull request #970 from vvuk/non-fs-pointer-lockAlon Zakai
teach library_browser about non-fullscreen pointerlock if Module.element PointerLock is true
2013-03-20fix indentationAlon Zakai
2013-03-20Merge pull request #968 from vvuk/sdl-backbuffer-sizeAlon Zakai
Make SDL handle the case where canvas backbuffer and canvas CSS element are not the same size
2013-03-19handle negative zero; fixes #921Alon Zakai
2013-03-19fix OpenAL makeGetValue indicesVladimir Vukicevic
2013-03-19Merge pull request #977 from ehsan/openalEhsan Akhgari
Initial support for positional audio
2013-03-19Use the equalpower panning modelEhsan Akhgari
2013-03-19Fix a typoEhsan Akhgari
2013-03-19Merge pull request #974 from waywardmonkeys/fix-ctpopAlon Zakai
Fix large values in llvm_ctpop_i32().
2013-03-19Implement alListenerfvEhsan Akhgari
2013-03-19Only pause/resume in progress sources if the buffer being played back is the ↵Ehsan Akhgari
same as the buffer for the new source
2013-03-19teach library_browser about non-fullscreen pointerlock if ↵Vladimir Vukicevic
Module.elementPointerLock is true
2013-03-19Make SDL handle the case where canvas backbuffer and canvas CSS element are ↵Vladimir Vukicevic
not the same size
2013-03-20Fix large values in llvm_ctpop_i32().Bruce Mitchener
Large values looked like negative values, we have to do an unsigned shift. Fixes issue #966.
2013-03-19When there's no exception, just drop the resume.Bruce Mitchener
This addresses part of what was raised in http://llvm.org/PR15518 and issue #917.
2013-03-18Merge pull request #945 from ting-yuan/incomingAlon Zakai
Fix the return value of fgets().
2013-03-18process in chunks in fast path in Pointer_stringifyAlon Zakai
2013-03-18check for utf and avoid the overhead if not necessary; remove UTF_STRING_SUPPORTAlon Zakai
2013-03-18add option to turn all unresolved references into dead functions (i.e., no ↵Alon Zakai
compile-time warnings or errors, instead runtime aborts
2013-03-18switchify the main formatString loopAlon Zakai
2013-03-18fix printing of %llx very small and very large valuesAlon Zakai
2013-03-18make Pointer_stringify argument handling consistentAlon Zakai
2013-03-18do not warn/error on unresolved symbols that have been declared deadAlon Zakai
2013-03-17Merge pull request #956 from ↵Alon Zakai
michaeljbishop/fix-stride-discrepancy-in-renderer-cache Finding a renderer in the cache now takes into account the current VBO stride.
2013-03-17add OPENAL_DEBUG to settings.jsAlon Zakai
2013-03-17Merge pull request #962 from ehsan/openalAlon Zakai
Hide all of the console.* stuff behind a compile time flag
2013-03-17optimize SDL.offsetsAlon Zakai
2013-03-17Merge pull request #958 from caiiiycuk/offsetsAlon Zakai
Fix offsets for canvas
2013-03-17improve error message on memory growth in asm.jsAlon Zakai
2013-03-17mention DEAD_FUNCTIONS in unresolved symbol abort in asm.js modeAlon Zakai
2013-03-17abort compilation in asm.js when we see setjmpAlon Zakai
2013-03-17Hide all of the console.* stuff behind a compile time flagEhsan Akhgari
2013-03-17Fix offsets for canvasAleksander Guryanov
2013-03-16error on undefined symbols in asm.js mode, since it breaks validation and ↵Alon Zakai
must be corrected
2013-03-16When finding renderers in the cache, the stride of the current vertexMichael J. Bishop
buffer object is also taken into account. This fixes a problem where a renderer could be used to draw a vertex buffer object with a different stride value than the renderer captured when the renderer was created.