diff options
author | Samuel Pitoiset <[email protected]> | 2017-07-18 10:56:19 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-07-31 13:53:39 +0200 |
commit | 2a4d5dce74ab7138a8e124a28a9eac69a9d96e5d (patch) | |
tree | 568fd856e76a4907b0f9454e3b4359bf92a18c97 /src/mesa/main/textureview.h | |
parent | 68c43ae8b2026acca482639292b3a673fb06ef6f (diff) |
mesa: add KHR_no_error support to glTextureView()
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/mesa/main/textureview.h')
-rw-r--r-- | src/mesa/main/textureview.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/main/textureview.h b/src/mesa/main/textureview.h index 39b415d8793..e2f18aed017 100644 --- a/src/mesa/main/textureview.h +++ b/src/mesa/main/textureview.h @@ -42,6 +42,12 @@ GLenum _mesa_texture_view_lookup_view_class(const struct gl_context *ctx, GLenum internalformat); +void GLAPIENTRY +_mesa_TextureView_no_error(GLuint texture, GLenum target, GLuint origtexture, + GLenum internalformat, + GLuint minlevel, GLuint numlevels, + GLuint minlayer, GLuint numlayers); + extern void GLAPIENTRY _mesa_TextureView(GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, |