diff options
author | Samuel Pitoiset <[email protected]> | 2017-06-26 13:53:02 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-06-28 10:25:12 +0200 |
commit | 56f428817f4f57806e73d0acd18949bf563f6540 (patch) | |
tree | ba9780c4ef9a3900b3e609de771ccbb31b780185 /src/mesa/main/texobj.h | |
parent | ab6d383e32311800ae8bbe0e9d63a4e8d80a66de (diff) |
mesa: add KHR_no_error support for gl*Textures()
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 | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/main/texobj.h b/src/mesa/main/texobj.h index a82c9722639..f10623899fc 100644 --- a/src/mesa/main/texobj.h +++ b/src/mesa/main/texobj.h @@ -177,9 +177,15 @@ _mesa_lock_context_textures( struct gl_context *ctx ); */ /*@{*/ +void GLAPIENTRY +_mesa_GenTextures_no_error(GLsizei n, GLuint *textures); + extern void GLAPIENTRY _mesa_GenTextures(GLsizei n, GLuint *textures); +void GLAPIENTRY +_mesa_CreateTextures_no_error(GLenum target, GLsizei n, GLuint *textures); + extern void GLAPIENTRY _mesa_CreateTextures(GLenum target, GLsizei n, GLuint *textures); |