mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 20:38:06 +02:00
mesa: add GL_EXT_copy_image support
The extension is identical to GL_OES_copy_image. But dEQP has tests that want the EXT variant. Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu> Reviewed-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
ebdb534548
commit
a94d8d51d7
2 changed files with 23 additions and 0 deletions
|
|
@ -915,6 +915,28 @@
|
|||
|
||||
</category>
|
||||
|
||||
<category name="GL_EXT_copy_image" number="208">
|
||||
|
||||
<function name="CopyImageSubDataEXT" alias="CopyImageSubData" es2="3.0">
|
||||
<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>
|
||||
|
||||
<category name="GL_OES_texture_buffer" number="216">
|
||||
|
||||
<function name="TexBufferOES" es2="3.1" alias="TexBuffer">
|
||||
|
|
|
|||
|
|
@ -186,6 +186,7 @@ EXT(EXT_blend_subtract , dummy_true
|
|||
EXT(EXT_buffer_storage , ARB_buffer_storage , x , x , x , 31, 2015)
|
||||
EXT(EXT_color_buffer_float , dummy_true , x , x , ES1, 30, 2013)
|
||||
EXT(EXT_compiled_vertex_array , dummy_true , GLL, x , x , x , 1996)
|
||||
EXT(EXT_copy_image , OES_copy_image , x , x , x , 30, 2014)
|
||||
EXT(EXT_copy_texture , dummy_true , GLL, x , x , x , 1995)
|
||||
EXT(EXT_depth_bounds_test , EXT_depth_bounds_test , GLL, GLC, x , x , 2002)
|
||||
EXT(EXT_discard_framebuffer , dummy_true , x , x , ES1, ES2, 2009)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue