aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2013-10-14simplify tokenizing of {..}**..Alon Zakai
2013-10-14ensure ErrnoError exists during static initializationAlon Zakai
2013-10-14properly parse ctors fully; fixes #1155Alon Zakai
2013-10-14use proper separator in va_argHandler; fixes #1705Alon Zakai
2013-10-14Merge branch 'implemet_glcolor4ubv' of github.com:chino/emscripten into incomingAlon Zakai
Conflicts: AUTHORS
2013-10-14Merge branch 'glut_mouse_wheel' of github.com:anlambert/emscripten into incomingAlon Zakai
Conflicts: AUTHORS
2013-10-14do not show spurious warnings about missing library depsAlon Zakai
2013-10-14Merge branch 'fix-rotozoom' of github.com:fhd/emscripten into incomingAlon Zakai
2013-10-13warn on missing library deps, remove an obsolete VFS dep, and add a ↵Alon Zakai
necessary glOrtho dep; fixes #1708
2013-10-13opengl: implement glColor4ubvDaniel Aquino
2013-10-13demangle arraysAlon Zakai
2013-10-13add remaining basic demangle typesAlon Zakai
2013-10-13demangle referencesAlon Zakai
2013-10-13demangle all functions in stack traces, not just oneAlon Zakai
2013-10-12un-closurify ErrnoErrorAlon Zakai
2013-10-12use stackTrace in various placesAlon Zakai
2013-10-12demangle stacks in abort(), using new stackTrace utilityAlon Zakai
2013-10-12properly demangle cxxabi crazinessAlon Zakai
2013-10-12refactor out parsing of nested demangled runsAlon Zakai
2013-10-12parse anything after P, not just basic typesAlon Zakai
2013-10-12refactor demanglerAlon Zakai
2013-10-12support demangling constAlon Zakai
2013-10-12demangle basic templatesAlon Zakai
2013-10-12demangle some templatesAlon Zakai
2013-10-12work towards demangling of templatesAlon Zakai
2013-10-12demangle basic paramsAlon Zakai
2013-10-12avoid crash in demangler with special operatorsAlon Zakai
2013-10-12avoid creating unnecessary objects when calling tokenizeAlon Zakai
2013-10-12remove unnecessary %"" merge code in makeTokenAlon Zakai
2013-10-11use full params when legalizing phis, not just their idents; fixes #1702Alon Zakai
2013-10-11Fixes bug when renaming a directory into a subdirectory.Michael Bishop
2013-10-11C++ demangle helperAlon Zakai
2013-10-10do not emit postSets for function indexing etc., bake them into the memory ↵Alon Zakai
initializer
2013-10-10do not assert on output of numeric 0 from a js handlerAlon Zakai
2013-10-10Fix whitespace in GL.populateUniformTable.Jukka Jylänki
2013-10-10Merge pull request #1700 from juj/gl_extension_desktop_parityjuj
Gl extension desktop parity
2013-10-10Advertise all GL extensions both with and without the "GL_" prefix that ↵Jukka Jylänki
desktop has, to match feature parity on existing codebases so that they don't have to manually work around the extension strings for both WebGL and GLES2.
2013-10-10remove unneeded variableAlon Zakai
2013-10-09avoid allocating common tokens repeatedlyAlon Zakai
2013-10-09optimize parseNumericalAlon Zakai
2013-10-09look for structs in src/ dir as a fallback, like relooperAlon Zakai
2013-10-09remove old function indexing codeAlon Zakai
2013-10-09print call stack of errors, when there is oneAlon Zakai
2013-10-09Add a whitelist of GL extensions to enable at startup.Jukka Jylänki
2013-10-08more explicit mathop nodes in legalizerAlon Zakai
2013-10-08explicit mathop node in legalizer end caseAlon Zakai
2013-10-08use ident in alloca intertypeAlon Zakai
2013-10-08automatically adjust asm heap sizeAlon Zakai
2013-10-08Merge pull request #1689 from juj/fix_gl_uniform_arraysjuj
Fix gl uniform arrays
2013-10-08Add a note that the previous commits shift the performance landscape to be ↵Jukka Jylänki
heavier towards initial glLinkProgram time instead of doing work lazily in glGetUniformLocation time, which would get complicated for arrays, structs and SoA scenarios.