diff options
author | Samuel Pitoiset <[email protected]> | 2017-07-19 13:35:11 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-07-31 13:53:40 +0200 |
commit | 1dd20033966279aa403f46a07aec64e2e2a56b4a (patch) | |
tree | e158c5ca133e9599941e9cd0142d13436d422020 /src/mesa/main/bufferobj.h | |
parent | fc039e9ff429437f6b14a2bddee9245d1b8c3a22 (diff) |
mesa: add KHR_no_error support to glDeleteBuffers()
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/mesa/main/bufferobj.h')
-rw-r--r-- | src/mesa/main/bufferobj.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/bufferobj.h b/src/mesa/main/bufferobj.h index 662ceba8a6c..69e85498186 100644 --- a/src/mesa/main/bufferobj.h +++ b/src/mesa/main/bufferobj.h @@ -162,6 +162,9 @@ void GLAPIENTRY _mesa_BindBuffer(GLenum target, GLuint buffer); void GLAPIENTRY +_mesa_DeleteBuffers_no_error(GLsizei n, const GLuint * buffer); + +void GLAPIENTRY _mesa_DeleteBuffers(GLsizei n, const GLuint * buffer); void GLAPIENTRY |