diff options
author | Samuel Pitoiset <[email protected]> | 2017-05-31 14:26:20 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-06-07 11:03:54 +0200 |
commit | c231590f8d1e474c2c8e5bcf7a3956903b2b8ccc (patch) | |
tree | 7c6cd8a98454a0d5489d49b89c046c2ddb587897 /src/mesa/main/bufferobj.h | |
parent | b019c4e6e833d41c24043144ac24986dd3e9a4eb (diff) |
mesa: add KHR_no_error support for glBindBuffer()
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 a8e174dc6b1..44342840a81 100644 --- a/src/mesa/main/bufferobj.h +++ b/src/mesa/main/bufferobj.h @@ -156,6 +156,9 @@ _mesa_ClearBufferSubData_sw(struct gl_context *ctx, * API functions */ void GLAPIENTRY +_mesa_BindBuffer_no_error(GLenum target, GLuint buffer); + +void GLAPIENTRY _mesa_BindBuffer(GLenum target, GLuint buffer); void GLAPIENTRY |