diff options
author | Samuel Pitoiset <[email protected]> | 2017-07-19 11:05:31 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-07-31 13:53:39 +0200 |
commit | 9f1fab9533a84d35e7121ecc551b206af87f0f85 (patch) | |
tree | ea6a0c2eeb2a24f28ac03c92977f0e1f60f78643 /src/mesa/main/texobj.h | |
parent | cba013d423da97df486f77586f135345a50f1af6 (diff) |
mesa: add KHR_no_error support to glBindTexture()
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/mesa/main/texobj.h')
-rw-r--r-- | src/mesa/main/texobj.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/texobj.h b/src/mesa/main/texobj.h index 9b9e4185d7b..4971a2075d8 100644 --- a/src/mesa/main/texobj.h +++ b/src/mesa/main/texobj.h @@ -193,6 +193,9 @@ extern void GLAPIENTRY _mesa_DeleteTextures( GLsizei n, const GLuint *textures ); +void GLAPIENTRY +_mesa_BindTexture_no_error(GLenum target, GLuint texture); + extern void GLAPIENTRY _mesa_BindTexture( GLenum target, GLuint texture ); |