diff options
author | Timothy Arceri <[email protected]> | 2017-05-22 15:46:54 +1000 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2017-05-30 08:03:32 +1000 |
commit | 9d331739ae72c5678701c8b1b5d0f460c6e2c857 (patch) | |
tree | 973fa9f255ee52831951d60b96437678bbafe27f /src/mesa/main/varray.h | |
parent | 9db595e0dee5fb26673633a98dd382b1cdabfcf9 (diff) |
mesa: add KHR_no_error support for glBindVertexBuffer()
Reviewed-by: Iago Toral Quiroga <[email protected]>
Tested-by: Dieter Nützel <[email protected]>
Diffstat (limited to 'src/mesa/main/varray.h')
-rw-r--r-- | src/mesa/main/varray.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/varray.h b/src/mesa/main/varray.h index 2d184adf8bc..c3cd5d207c4 100644 --- a/src/mesa/main/varray.h +++ b/src/mesa/main/varray.h @@ -361,6 +361,9 @@ _mesa_primitive_restart_index(const struct gl_context *ctx, } extern void GLAPIENTRY +_mesa_BindVertexBuffer_no_error(GLuint bindingIndex, GLuint buffer, + GLintptr offset, GLsizei stride); +extern void GLAPIENTRY _mesa_BindVertexBuffer(GLuint bindingIndex, GLuint buffer, GLintptr offset, GLsizei stride); |