diff options
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) { |