aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/main/copyimage.h
diff options
context:
space:
mode:
authorIndrajit Kumar Das <[email protected]>2020-01-20 14:19:47 +0530
committerMarge Bot <[email protected]>2020-02-24 16:31:06 +0000
commit18124d727865f1c53b0dac644560bce177b7d233 (patch)
tree09bc2e6e10214fb6bd457cc3bc45725afd43bb3d /src/mesa/main/copyimage.h
parentae7bda27a0691d6d89c35c9f732b6e49d726c17f (diff)
glapi/copyimage: Implement CopyImageSubDataNV
Implement CopyImageSubDataNV from NV_copy_image spec. This is derived out of the existing implementation of CopyImageSubData. It differs from CopyImageSubData in accordance with the differences laid down in the ARB_copy_image spec. Reviewed-by: Marek Olšák <[email protected]> Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3649> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3649>
Diffstat (limited to 'src/mesa/main/copyimage.h')
-rw-r--r--src/mesa/main/copyimage.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/mesa/main/copyimage.h b/src/mesa/main/copyimage.h
index 7cebb30d997..09f6dca3bdf 100644
--- a/src/mesa/main/copyimage.h
+++ b/src/mesa/main/copyimage.h
@@ -49,6 +49,20 @@ _mesa_CopyImageSubData(GLuint srcName, GLenum srcTarget, GLint srcLevel,
GLint destX, GLint destY, GLint destZ,
GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth);
+void GLAPIENTRY
+_mesa_CopyImageSubDataNV_no_error(GLuint srcName, GLenum srcTarget, GLint srcLevel,
+ GLint srcX, GLint srcY, GLint srcZ,
+ GLuint destName, GLenum destTarget, GLint destLevel,
+ GLint destX, GLint destY, GLint destZ,
+ GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth);
+
+extern void GLAPIENTRY
+_mesa_CopyImageSubDataNV(GLuint srcName, GLenum srcTarget, GLint srcLevel,
+ GLint srcX, GLint srcY, GLint srcZ,
+ GLuint destName, GLenum destTarget, GLint destLevel,
+ GLint destX, GLint destY, GLint destZ,
+ GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth);
+
#ifdef __cplusplus
}
#endif