diff options
author | Timothy Arceri <[email protected]> | 2017-06-26 13:27:17 +1000 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2017-06-27 08:27:11 +1000 |
commit | a00a277da99f426c5820c39264d51381f14b2a86 (patch) | |
tree | 34bac046fa900b83f052383f1e09655bca85b221 /src/mesa/main/teximage.h | |
parent | 8bf02efed328c8b0a0739fe203cc223b71322ecc (diff) |
mesa: add KHR_no_error support for glCopyTexImage*D()
Reviewed-by: Samuel Pitoiset <[email protected]>
Diffstat (limited to 'src/mesa/main/teximage.h')
-rw-r--r-- | src/mesa/main/teximage.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/mesa/main/teximage.h b/src/mesa/main/teximage.h index c2fd4514d88..04ddbb90e55 100644 --- a/src/mesa/main/teximage.h +++ b/src/mesa/main/teximage.h @@ -352,6 +352,17 @@ _mesa_CopyTexImage2D( GLenum target, GLint level, extern void GLAPIENTRY +_mesa_CopyTexImage1D_no_error(GLenum target, GLint level, GLenum internalformat, + GLint x, GLint y, GLsizei width, GLint border); + + +extern void GLAPIENTRY +_mesa_CopyTexImage2D_no_error(GLenum target, GLint level, GLenum internalformat, + GLint x, GLint y, GLsizei width, GLsizei height, + GLint border ); + + +extern void GLAPIENTRY _mesa_CopyTexSubImage1D( GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width ); |