mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-21 11:08:24 +02:00
This adds the API entrypoint, error checking logic, and a driver hook for
the ARB_copy_image extension.
v2: Fix a typo in ARB_copy_image.xml and add it to the makefile
v3: Put ARB_copy_image.xml in the right place alphebetically in the
makefile and properly prefix the commit message
v4: Fixed some line wrapping and added a check for null
v5: Check for incomplete renderbuffers
Signed-off-by: Jason Ekstrand <jason.ekstrand@intel.com>
Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Reviewed-by: Neil Roberts <neil@linux.intel.com>
v6: Update dispatch_sanity for the addition of CopyImageSubData
28 lines
902 B
XML
28 lines
902 B
XML
<?xml version="1.0"?>
|
|
<!DOCTYPE OpenGLAPI SYSTEM "gl_API.dtd">
|
|
|
|
<OpenGLAPI>
|
|
|
|
<category name="GL_ARB_copy_image" number="123">
|
|
|
|
<function name="CopyImageSubData" offset="assign">
|
|
<param name="srcName" type="GLuint"/>
|
|
<param name="srcTarget" type="GLenum"/>
|
|
<param name="srcLevel" type="GLint"/>
|
|
<param name="srcX" type="GLint"/>
|
|
<param name="srcY" type="GLint"/>
|
|
<param name="srcZ" type="GLint"/>
|
|
<param name="dstName" type="GLuint"/>
|
|
<param name="dstTarget" type="GLenum"/>
|
|
<param name="dstLevel" type="GLint"/>
|
|
<param name="dstX" type="GLint"/>
|
|
<param name="dstY" type="GLint"/>
|
|
<param name="dstZ" type="GLint"/>
|
|
<param name="srcWidth" type="GLsizei"/>
|
|
<param name="srcHeight" type="GLsizei"/>
|
|
<param name="srcDepth" type="GLsizei"/>
|
|
</function>
|
|
|
|
</category>
|
|
|
|
</OpenGLAPI>
|