diff options
author | Samuel Pitoiset <[email protected]> | 2017-06-01 11:46:24 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-06-07 11:04:33 +0200 |
commit | 287a7a0ca6cae5a9bc90a7d94395af927000b55e (patch) | |
tree | 2a5a5b10976c9d4d21f7b23cf04338a858da4492 /src/mesa/main/copyimage.h | |
parent | 41df4b1d7e689f42263250356079b37efa3018bd (diff) |
mesa: add KHR_no_error support for glCopyImageSubData()
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/mesa/main/copyimage.h')
-rw-r--r-- | src/mesa/main/copyimage.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mesa/main/copyimage.h b/src/mesa/main/copyimage.h index 40e95b66312..ea2f15b4352 100644 --- a/src/mesa/main/copyimage.h +++ b/src/mesa/main/copyimage.h @@ -35,6 +35,13 @@ extern "C" { #endif +void GLAPIENTRY +_mesa_CopyImageSubData_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_CopyImageSubData(GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, |