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.c | |
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.c')
-rw-r--r-- | src/mesa/main/teximage.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c index 1093ea033e6..36747a72732 100644 --- a/src/mesa/main/teximage.c +++ b/src/mesa/main/teximage.c @@ -4007,6 +4007,26 @@ _mesa_CopyTexImage2D( GLenum target, GLint level, GLenum internalFormat, } +void GLAPIENTRY +_mesa_CopyTexImage1D_no_error(GLenum target, GLint level, GLenum internalFormat, + GLint x, GLint y, GLsizei width, GLint border) +{ + GET_CURRENT_CONTEXT(ctx); + copyteximage_no_error(ctx, 1, target, level, internalFormat, x, y, width, 1, + border); +} + + +void GLAPIENTRY +_mesa_CopyTexImage2D_no_error(GLenum target, GLint level, GLenum internalFormat, + GLint x, GLint y, GLsizei width, GLsizei height, + GLint border) +{ + GET_CURRENT_CONTEXT(ctx); + copyteximage_no_error(ctx, 2, target, level, internalFormat, + x, y, width, height, border); +} + void GLAPIENTRY _mesa_CopyTexSubImage1D( GLenum target, GLint level, |