aboutsummaryrefslogtreecommitdiff
path: root/src/library_gl.js
AgeCommit message (Collapse)Author
2013-05-15forward gl emulation sigsAlon Zakai
2013-05-15fix some gl sigsAlon Zakai
2013-05-10Added OES_element_index_uint and OES_standard_derivatives detection, ↵Anthony Pesch
glDetachShader support and misc. function signature fixes
2013-05-01optimize client attribute storageAlon Zakai
2013-05-01capture clientAttributes to a localAlon Zakai
2013-05-01missing GL sigsAlon Zakai
2013-04-30lots of SDL_GL_GetProcAddress fixesRobert Bragg
These fixes are enough to enable us to start running Cogl based applications via our sdl backend
2013-04-26fix glGetShaderSource string truncationAlon Zakai
2013-04-19add sig for glUniformMatrix2fvAlon Zakai
2013-04-17when we have multiple strides, restrideAlon Zakai
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-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.
2013-03-15optimize away the allocation in glUniformMatrix?fv with count == 1Alon Zakai
2013-03-15optimize away the allocation in glUniform?fv with count == 1Alon Zakai
2013-03-11fix client side GL arrays in FULL_ES2Vladimir Vukicevic
2013-03-11use bufferSubData in FULL_ES2Alon Zakai
2013-03-07FULL_ES2 todoAlon Zakai
2013-03-07use temp buffers for indices in glDrawElements in FULL_ES2Alon Zakai
2013-03-07use temp buffers in FULL_ES2 array buffersAlon Zakai
2013-03-07refactor gl temporary buffer codeAlon Zakai
2013-03-07optimize out creation of new JS objects in each glVertexAttribPointer call ↵Alon Zakai
in FULL_ES2
2013-03-07fix FULL_ES2 bug with not taking into account 'first' in glDrawArraysAlon Zakai
2013-03-07gl commentsAlon Zakai
2013-03-07gl whitespace cleanupAlon Zakai
2013-03-02GLImmediate should depend on GLEmulationAlon Zakai
2013-02-27Merge pull request #887 from MichaelRiss/glVertex2iAlon Zakai
Add glVertex3i and glVertex2i calls
2013-02-27fix glIs*Alon Zakai
2013-02-27expose current buffers outside of FULL_ES2 - needed for gl emulationAlon Zakai
2013-02-27refactor byteSizeByTypeRoot and use it in FULL_ES2Alon Zakai
2013-02-27cleanupsAlon Zakai
2013-02-27Add client-side vertex attribs and index buffersVladimir Vukicevic
2013-02-28Add glVertex3i and glVertex2i callsMichael Riss
These are basically just aliases for the glVertex3f function. Javascript seems to convert the integers to float values correctly. However, I did not follow the code path through the immediate mode emulation to know for sure. In my applications it works for "normal", small values (e.g. 1, 500, 1000, ...).
2013-02-27FORCE_GL_EMULATION optionAlon Zakai
2013-02-27properly emit calls to gl passthroughs with 0 params, and test for glErrorAlon Zakai
2013-02-26refactor gl detection of attributes from capabilitiesAlon Zakai
2013-02-26Merge pull request #870 from michaeljbishop/adding-glgetbooleanv-gl-vertex-arrayAlon Zakai
Added support in glGetBooleanv GL_VERTEX_ARRAY.
2013-02-22Added some more symbols to `glGetBooleanv`Michael J. Bishop
- `GL_TEXTURE_COORD_ARRAY` - `GL_TEXTURE_2D` - `GL_COLOR_ARRAY`
2013-02-22Added support in glGetBooleanv GL_VERTEX_ARRAY.Michael J. Bishop
2013-02-22add missing vertex array signaturesAlon Zakai
2013-02-22Merge pull request #869 from michaeljbishop/adding-oes-symbolsAlon Zakai
Added support for `glFramebufferTexture2DOES`
2013-02-22clean up last renderer when wiping everything out for vaoAlon Zakai
2013-02-22typoAlon Zakai
2013-02-22GL_UNSAFE_OPTS optionAlon Zakai
2013-02-22mark client attributes as modified when we clear for vaosAlon Zakai
2013-02-22wipe out previous vao-related state when binding a vaoAlon Zakai
2013-02-22save client states in vertex array objectsAlon Zakai