mesa/src/mapi/glapi/gen/ARB_invalidate_subdata.xml
Samuel Pitoiset c88649246f mesa: add KHR_no_error support to glInvalidate*()
These are just no-op because we don't actually do anything
useful in the errors path.

Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Reviewed-by: Timothy Arceri <tarceri@itsqueeze.com>
2017-07-31 13:53:39 +02:00

48 lines
1.7 KiB
XML

<?xml version="1.0"?>
<!DOCTYPE OpenGLAPI SYSTEM "gl_API.dtd">
<OpenGLAPI>
<category name="GL_ARB_invalidate_subdata" number="666">
<function name="InvalidateTexSubImage" no_error="true">
<param name="texture" type="GLuint"/>
<param name="level" type="GLint"/>
<param name="xoffset" type="GLint"/>
<param name="yoffset" type="GLint"/>
<param name="zoffset" type="GLint"/>
<param name="width" type="GLsizei"/>
<param name="height" type="GLsizei"/>
<param name="depth" type="GLsizei"/>
</function>
<function name="InvalidateTexImage" no_error="true">
<param name="texture" type="GLuint"/>
<param name="level" type="GLint"/>
</function>
<function name="InvalidateBufferSubData" no_error="true">
<param name="buffer" type="GLuint"/>
<param name="offset" type="GLintptr"/>
<param name="length" type="GLsizeiptr"/>
</function>
<function name="InvalidateBufferData" no_error="true">
<param name="buffer" type="GLuint"/>
</function>
<function name="InvalidateSubFramebuffer" es2="3.0" no_error="true">
<param name="target" type="GLenum"/>
<param name="numAttachments" type="GLsizei" counter="true"/>
<param name="attachments" type="const GLenum *" count="numAttachments"/>
<param name="x" type="GLint"/>
<param name="y" type="GLint"/>
<param name="width" type="GLsizei"/>
<param name="height" type="GLsizei"/>
</function>
<function name="InvalidateFramebuffer" es2="3.0" no_error="true">
<param name="target" type="GLenum"/>
<param name="numAttachments" type="GLsizei" counter="true"/>
<param name="attachments" type="const GLenum *" count="numAttachments"/>
</function>
</category>
</OpenGLAPI>