summaryrefslogtreecommitdiff
path: root/src/mapi/glapi/gen/ARB_vertex_attrib_binding.xml
AgeCommit message (Collapse)AuthorFilesLines
2017-05-30mesa: add KHR_no_error support for glBindVertexBuffer()Timothy Arceri1-1/+1
Reviewed-by: Iago Toral Quiroga <itoral@igalia.com> Tested-by: Dieter Nützel <Dieter@nuetzel-hh.de>
2015-05-28gles/es3.1: Enable dispatch of almost all new GLES 3.1 functionsIan Romanick1-5/+5
A couple functions are missing because there are no implementations of them yet. These are: glFramebufferParameteri (from GL_ARB_framebuffer_no_attachments) glGetFramebufferParameteriv (from GL_ARB_framebuffer_no_attachments) glMemoryBarrierByRegion v2: Rebase on updated dispatch_sanity.cpp test. v3: Add support for glDraw{Arrays,Elements}Indirect in vbo_exec_array.c. The updated dispatch_sanity.cpp test discovered this omission. v4: Rebase on glapi changes. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Tapani Pälli <tapani.palli@intel.com>
2015-05-15glapi: Remove all offset tags from the XMLIan Romanick1-6/+6
Changes generated by: cd src/mapi/glapi/gen for i in *.xml; do cat $i |\ sed 's/[[:space:]]*offset="[^"]*">/>/' |\ sed 's/[[:space:]]*offset="[^"]*"[[:space:]]*$//' |\ sed 's/[[:space:]]*offset="[^"]*"[[:space:]]*/ /' > x mv x $i done Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
2014-08-27mesa: implement GL_MAX_VERTEX_ATTRIB_STRIDETimothy Arceri1-0/+1
V2: moved test for the VertexAttrib*Pointer() functions to update_array(), and made constant available for drivers to set Signed-off-by: Timothy Arceri <t_arceri@yahoo.com.au> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
2013-11-07glapi: Add infrastructure for ARB_vertex_attrib_bindingFredrik Höglund1-0/+58
Reviewed-by: Eric Anholt <eric@anholt.net> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>