diff options
author | Samuel Pitoiset <[email protected]> | 2017-08-24 11:36:45 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-08-25 11:35:30 +0200 |
commit | fff132754770d54da0c285e266737d9fcd73ca94 (patch) | |
tree | 242be280bec1f407d857fb9ef6859a9a00e96ac6 /src/mesa/main/transformfeedback.c | |
parent | dc058f850c0720880b2738cccde1c7f6e06f2e25 (diff) |
mesa: add KHR_no_error support to glBindBufferOffsetEXT()
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/mesa/main/transformfeedback.c')
-rw-r--r-- | src/mesa/main/transformfeedback.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mesa/main/transformfeedback.c b/src/mesa/main/transformfeedback.c index 44a6e149dba..befc74444c5 100644 --- a/src/mesa/main/transformfeedback.c +++ b/src/mesa/main/transformfeedback.c @@ -802,6 +802,16 @@ bind_buffer_offset(struct gl_context *ctx, void GLAPIENTRY +_mesa_BindBufferOffsetEXT_no_error(GLenum target, GLuint index, GLuint buffer, + GLintptr offset) +{ + GET_CURRENT_CONTEXT(ctx); + bind_buffer_offset(ctx, ctx->TransformFeedback.CurrentObject, index, buffer, + offset, true); +} + + +void GLAPIENTRY _mesa_BindBufferOffsetEXT(GLenum target, GLuint index, GLuint buffer, GLintptr offset) { |