mesa: Add infrastructure for GL_ARB_clear_buffer_object

- add xml file for extension
 - add reference in gl_API.xml
 - add pointer to device driver function table (dd.h)
 - update dispatch_sanity.cpp

Reviewed-by: Brian Paul <brianp@vmware.com>
This commit is contained in:
Pi Tabred 2013-12-14 10:32:00 -07:00 committed by Brian Paul
parent 56647c5d8f
commit 1f7c3e541f
4 changed files with 63 additions and 3 deletions

View file

@ -0,0 +1,50 @@
<?xml version="1.0"?>
<!DOCTYPE OpenGLAPI SYSTEM "gl_API.dtd">
<!-- Note: no GLX protocol info yet. -->
<OpenGLAPI>
<category name="GL_ARB_clear_buffer_object" number="121">
<function name ="ClearBufferData" offset="assign">
<param name="target" type="GLenum"/>
<param name="internalformat" type="GLenum"/>
<param name="format" type="GLenum"/>
<param name="type" type="GLenum"/>
<param name="data" type="const GLvoid *"/>
</function>
<function name ="ClearBufferSubData" offset="assign">
<param name="target" type="GLenum"/>
<param name="internalformat" type="GLenum"/>
<param name="offset" type="GLintptr"/>
<param name="size" type="GLsizeiptr"/>
<param name="format" type="GLenum"/>
<param name="type" type="GLenum"/>
<param name="data" type="const GLvoid *"/>
</function>
<!-- <function name="ClearNamedBufferDataEXT" offset="assign">
<param name="buffer" type="GLuint"/>
<param name="internalformat" type="GLenum"/>
<param name="format" type="GLenum"/>
<param name="type" type="GLenum"/>
<param name="data" type="const GLvoid *"/>
</function>
<function name="ClearNamedBufferSubDataEXT" offset="assign">
<param name="buffer" type="GLuint"/>
<param name="internalformat" type="GLenum"/>
<param name="offset" type="GLintptr"/>
<param name="size" type="GLsizeiptr"/>
<param name="format" type="GLenum"/>
<param name="type" type="GLenum"/>
<param name="data" type="const GLvoid *"/>
</function> -->
</category>
</OpenGLAPI>

View file

@ -8460,10 +8460,14 @@
</category>
<!-- ARB extension #120 -->
<!-- ARB extensions #120...#123 -->
<xi:include href="ARB_clear_buffer_object.xml" xmlns:xi="http://www.w3.org/2001/XInclude"/>
<!-- ARB extensions #122...#123 -->
<xi:include href="ARB_texture_view.xml" xmlns:xi="http://www.w3.org/2001/XInclude"/>
<xi:include href="ARB_vertex_attrib_binding.xml" xmlns:xi="http://www.w3.org/2001/XInclude"/>
<!-- ARB extension #126 -->

View file

@ -574,6 +574,12 @@ struct dd_function_table {
GLintptrARB offset, GLsizeiptrARB size,
GLvoid *data, struct gl_buffer_object *obj );
void (*ClearBufferSubData)( struct gl_context *ctx,
GLintptr offset, GLsizeiptr size,
const GLvoid *clearValue,
GLsizeiptr clearValueSize,
struct gl_buffer_object *obj );
void (*CopyBufferSubData)( struct gl_context *ctx,
struct gl_buffer_object *src,
struct gl_buffer_object *dst,

View file

@ -846,8 +846,8 @@ const struct function gl_core_functions_possible[] = {
// { "glGetObjectLabel", 43, -1 }, // XXX: Add to xml
// { "glObjectPtrLabel", 43, -1 }, // XXX: Add to xml
// { "glGetObjectPtrLabel", 43, -1 }, // XXX: Add to xml
// { "glClearBufferData", 43, -1 }, // XXX: Add to xml
// { "glClearBufferSubData", 43, -1 }, // XXX: Add to xml
{ "glClearBufferData", 43, -1 },
{ "glClearBufferSubData", 43, -1 },
// { "glClearNamedBufferDataEXT", 43, -1 }, // XXX: Add to xml
// { "glClearNamedBufferSubDataEXT", 43, -1 }, // XXX: Add to xml
// { "glDispatchCompute", 43, -1 }, // XXX: Add to xml