aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-02-22Added support in glGetBooleanv GL_VERTEX_ARRAY.Michael J. Bishop
2013-02-21Merge pull request #859 from waywardmonkeys/cmdline-fixesAlon Zakai
Cmdline fixes
2013-02-21Merge pull request #860 from waywardmonkeys/strtok-allocAlon Zakai
Statically allocate the strtok state block so it doesn't trip up our leak detection
2013-02-21Merge pull request #851 from rogerbraun/sscanf-fixAlon Zakai
Handle %c in sscanf.
2013-02-21hide verbose file packager outputAlon Zakai
2013-02-21still emit library aliases - useful for e.g. gl OES aliasing, even if ↵Alon Zakai
normally the main name is the only one used
2013-02-21aliases for OES vertex array functionsAlon Zakai
2013-02-21add option to save JS of all tests runAlon Zakai
2013-02-21Add TODO for missing %c functionality.Roger Braun
2013-02-21Add Roger Braun to AUTHORS file.Roger Braun
2013-02-21Handle %c in sscanf.Roger Braun
2013-02-21emcc: Improve handling of -O flag.Bruce Mitchener
Previously, while gcc supports -O, emcc would fail. It now interprets -O as -O2, just as gcc does. Additionally, it was only looking at the first character after -O, so nonsense like -O34 would be accepted (and treated as -O3).
2013-02-20do not forward enable/disable of GL_TEXTURE_2D to WebGL enable/disable, it ↵Alon Zakai
is not needed and just warns
2013-02-20do not wipe out llvm debug info if linespecific corrections are doneAlon Zakai
2013-02-20remove bad_cast/typeinfo.cpp from libcxx, no longer needed since it is in ↵Alon Zakai
libcxxabi
2013-02-20build base type_info class with libcxxabi, fixes #862Alon Zakai
2013-02-20add more glGetIntegerv constantsAlon Zakai
2013-02-20TODO: multiple array buffers in vao (for each vertex attrib pointer separately)Alon Zakai
2013-02-20glGetPointervAlon Zakai
2013-02-20vertex array object support in gl emulationAlon Zakai
2013-02-20Mix_InitAlon Zakai
2013-02-20Statically allocate the strtok state block so it doesn't trip up our leak ↵Chad Austin
detection.
2013-02-20Provide error message on invalid command to emmake.Bruce Mitchener
Previously, this would just throw an exception, now it provides a reasonable error message.
2013-02-19allow changing frequency of corruption checks, and forcing a check ↵Alon Zakai
irregardless of frequency
2013-02-19support realloc in corruption checkerAlon Zakai
2013-02-19simplify corruption canaryAlon Zakai
2013-02-19handle malloc(0) and free(0) in corruption checkerAlon Zakai
2013-02-19hardcode arguments in benchmark js files, for easier debugging on themAlon Zakai
2013-02-19warn only once on glTexEnv*Alon Zakai
2013-02-19add mbishopMichael Bishop
2013-02-19Added some symbol compatibility for OpenGL1.1.Michael Bishop
Added implementations for - eglTerminate - eglDestroySurface - eglDestroyContext Stubbed out glTextEnvi
2013-02-19Added support for `glFrustumf`.Michael J. Bishop
2013-02-19fix test_debugAlon Zakai
2013-02-19remove unneeded sign correction from dlmalloc benchmarkAlon Zakai
2013-02-19Merge pull request #858 from ehsan/drawimage-memcpyAlon Zakai
Use the copy composite operation when calling drawImage
2013-02-19Use the copy composite operation when calling drawImageEhsan Akhgari
This optimizes IMG_Load so that it just does a memcpy as opposed to try to composite. The resulting buffer will be the same, it just happens that we don't need to do all of the work involved in compositing in the first place.
2013-02-19notify on unexpected exceptions being thrown and the lack of support for ↵Alon Zakai
them. fixes #856
2013-02-19closure docs on emcc --helpAlon Zakai
2013-02-18run closure in -O3, it makes sense there with the other unsafe optimizationsAlon Zakai
2013-02-18tune csmith driverAlon Zakai
2013-02-18csmith driver scriptAlon Zakai
2013-02-18fix test_closure_compilerAlon Zakai
2013-02-18remove LLVM debug info in -O1+, since the optimizer removes it anyhowAlon Zakai
2013-02-18fix test_emccAlon Zakai
2013-02-18fix emcc --version in other dirsAlon Zakai
2013-02-18clean up unneeded CorrectionsMonitor stuff; fixes test_unsignedAlon Zakai
2013-02-17ensure aligned memory in corruption detectorAlon Zakai
2013-02-17improve corruption checksAlon Zakai
2013-02-17print out # of corruption checks on exitAlon Zakai
2013-02-17memory corruption checkerAlon Zakai