| Commit message (Expand) | Author | Age | Files | Lines |
* | mesa: don't advertise ARB_texture_buffer_object in legacy contexts | Marek Olšák | 2012-12-12 | 1 | -2/+2 |
* | mesa: Ignore size and offset parameters for BindBufferRange when buffer is 0 | Matt Turner | 2012-12-07 | 1 | -10/+12 |
* | mesa: Standardize names of OpenGL functions. | Paul Berry | 2012-11-12 | 1 | -20/+20 |
* | dispatch: Delete unused init_dispatch functions. | Paul Berry | 2012-11-06 | 1 | -31/+0 |
* | dispatch: Make all API functions non-static. | Paul Berry | 2012-11-06 | 1 | -2/+2 |
* | mesa: Fix the core GL genned-name handling for glBindBufferBase()/Range(). | Eric Anholt | 2012-11-04 | 1 | -8/+14 |
* | dispatch: GLES1 fixes for _mesa_create_exec_table(). | Paul Berry | 2012-11-01 | 1 | -1/+1 |
* | _mesa_create_exec_table: GLES3 fixes. | Paul Berry | 2012-10-23 | 1 | -0/+3 |
* | mesa/es: Enable GL_EXT_map_buffer_range | Fredrik Höglund | 2012-10-16 | 1 | -6/+16 |
* | mesa: Don't set dispatch pointer for glGetBufferSubData in ES2 | Ian Romanick | 2012-09-28 | 1 | -1/+3 |
* | mesa: remove FEATURE_APPLE_object_purgeable define. | Oliver McFadden | 2012-09-15 | 1 | -3/+0 |
* | mesa: remove FEATURE_EXT_transform_feedback define. | Oliver McFadden | 2012-09-15 | 1 | -2/+0 |
* | Remove useless checks for NULL before freeing | Matt Turner | 2012-09-05 | 1 | -2/+1 |
* | mesa: Require names from Gen in core context | Ian Romanick | 2012-08-29 | 1 | -0/+4 |
* | mesa/es: Validate glGetBufferParameteriv pname in Mesa code rather than the E... | Ian Romanick | 2012-08-24 | 1 | -3/+6 |
* | mesa/es: Validate glMapBuffer access in Mesa code rather than the ES wrapper | Ian Romanick | 2012-08-24 | 1 | -0/+9 |
* | mesa/es: Validate glBufferData usage in Mesa code rather than the ES wrapper | Ian Romanick | 2012-08-24 | 1 | -5/+18 |
* | mesa/es: Validate buffer object targets in Mesa code rather than the ES wrapper | Ian Romanick | 2012-08-24 | 1 | -1/+8 |
* | mesa: Add skeleton implementations of glInvalidateBuffer{Sub,}Data | Ian Romanick | 2012-08-14 | 1 | -0/+97 |
* | mesa/es: Pass context to _mesa_init_bufferobj_dispatch | Ian Romanick | 2012-08-14 | 1 | -3/+6 |
* | mesa: Unbind uniform buffer bindings on glDeleteBuffers(). | Eric Anholt | 2012-08-07 | 1 | -0/+7 |
* | mesa: Make glBindBufferBase/glBindBufferRange() work on just-genned names. | Eric Anholt | 2012-08-07 | 1 | -12/+25 |
* | mesa: fix default_access_mode() result for ES2 | Brian Paul | 2012-08-02 | 1 | -1/+1 |
* | mesa: default_access_mode() returns a GLbitfield, not GLenum | Brian Paul | 2012-08-02 | 1 | -1/+1 |
* | mesa: rename MaxTransformFeedbackSeparateAttribs to MaxTransformFeedbackBuffers | Marek Olšák | 2012-06-28 | 1 | -1/+1 |
* | mesa: fix comments on UBO buffer binding functions | Brian Paul | 2012-06-22 | 1 | -4/+7 |
* | mesa: Add a comment explaining my thoughts on glBindBufferBase(). | Eric Anholt | 2012-06-21 | 1 | -0/+26 |
* | mesa: Add support for glBindBufferBase/Range on GL_UNIFORM_BUFFER. | Eric Anholt | 2012-06-21 | 1 | -0/+85 |
* | mesa: Move glBindBufferBase and glBindBufferRange() to bufferobj. | Eric Anholt | 2012-06-21 | 1 | -0/+74 |
* | mesa: Move buffer object dispatch setup to bufferobj.c. | Eric Anholt | 2012-06-21 | 1 | -0/+17 |
* | mesa: Add indexed binding points for uniform buffer objects. | Eric Anholt | 2012-06-21 | 1 | -0/+29 |
* | mesa: Add support for the GL_UNIFORM_BUFFER general binding point. | Eric Anholt | 2012-06-21 | 1 | -0/+9 |
* | mesa: Unbind GL_TEXTURE_BUFFER on DeleteBuffers. | Kenneth Graunke | 2012-06-11 | 1 | -0/+4 |
* | mesa: Check for a negative "size" parameter in glCopyBufferSubData(). | Kenneth Graunke | 2012-06-11 | 1 | -0/+6 |
* | mesa: Fix "glCopyBuffserSubData" typos in error messages and comments. | Kenneth Graunke | 2012-06-08 | 1 | -10/+10 |
* | mesa: Unbind ARB_transform_feedback2 binding points on Delete too. | Kenneth Graunke | 2012-06-05 | 1 | -1/+7 |
* | mesa: Unbind ARB_copy_buffer and transform feedback buffers on delete. | Kenneth Graunke | 2012-06-05 | 1 | -0/+13 |
* | mesa: new _mesa_total_buffer_object_memory() debug function | Brian Paul | 2012-04-11 | 1 | -0/+30 |
* | mesa: let GL3 buf obj queries not depend on opengl major version | Yuanhan Liu | 2012-03-01 | 1 | -6/+6 |
* | mesa: Fix the error message function names for glFlushMappedBufferRange(). | Eric Anholt | 2012-02-03 | 1 | -7/+7 |
* | mesa: Fix bad-enum/no-buffer error handling for buffer object functions. | Eric Anholt | 2012-02-03 | 1 | -87/+39 |
* | mesa: Avoid void * arithmetic. | José Fonseca | 2012-01-27 | 1 | -1/+1 |
* | mesa: Fix handling of glCopyBufferSubData() for src == dst. | Eric Anholt | 2012-01-27 | 1 | -6/+19 |
* | mesa: Set default access flags based on the run-time API | Ian Romanick | 2012-01-19 | 1 | -13/+31 |
* | mesa: add/update comments in _mesa_copy_buffer_subdata() | Brian Paul | 2012-01-07 | 1 | -1/+4 |
* | mesa: only map src/dest regions in _mesa_copy_buffer_subdata() | Brian Paul | 2012-01-05 | 1 | -6/+7 |
* | mesa: print more info in buffer_object_subdata_range_good() error message | Brian Paul | 2012-01-05 | 1 | -1/+4 |
* | mesa: Use VERT_ATTRIB_* indexed array in gl_array_object. | Mathias Fröhlich | 2011-11-29 | 1 | -11/+0 |
* | mesa: move ElementArrayBufferObj to gl_array_object | Yuanhan Liu | 2011-11-29 | 1 | -6/+3 |
* | mesa: check for null ptr in _mesa_is_bufferobj() | Brian Paul | 2011-11-28 | 1 | -3/+3 |