diff options
author | marha <marha@users.sourceforge.net> | 2012-06-22 08:30:33 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2012-06-22 08:30:33 +0200 |
commit | e1a407256a5c1571d8f4871fd981a51cfbd46e37 (patch) | |
tree | 9f8327deb05890b77137d57c0416d392beaa7fac /mesalib/src/mesa/main/transformfeedback.h | |
parent | da6ea6d64418710cbf7e0639dfefd2d856d53f1a (diff) | |
download | vcxsrv-e1a407256a5c1571d8f4871fd981a51cfbd46e37.tar.gz vcxsrv-e1a407256a5c1571d8f4871fd981a51cfbd46e37.tar.bz2 vcxsrv-e1a407256a5c1571d8f4871fd981a51cfbd46e37.zip |
mesa xserver libxcb fontconfig
Diffstat (limited to 'mesalib/src/mesa/main/transformfeedback.h')
-rw-r--r-- | mesalib/src/mesa/main/transformfeedback.h | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/mesalib/src/mesa/main/transformfeedback.h b/mesalib/src/mesa/main/transformfeedback.h index 7d63de017..85f4cbc77 100644 --- a/mesalib/src/mesa/main/transformfeedback.h +++ b/mesalib/src/mesa/main/transformfeedback.h @@ -60,12 +60,17 @@ _mesa_BeginTransformFeedback(GLenum mode); extern void GLAPIENTRY _mesa_EndTransformFeedback(void); -extern void GLAPIENTRY -_mesa_BindBufferRange(GLenum target, GLuint index, - GLuint buffer, GLintptr offset, GLsizeiptr size); +extern void +_mesa_bind_buffer_range_transform_feedback(struct gl_context *ctx, + GLuint index, + struct gl_buffer_object *bufObj, + GLintptr offset, + GLsizeiptr size); -extern void GLAPIENTRY -_mesa_BindBufferBase(GLenum target, GLuint index, GLuint buffer); +extern void +_mesa_bind_buffer_base_transform_feedback(struct gl_context *ctx, + GLuint index, + struct gl_buffer_object *bufObj); extern void GLAPIENTRY _mesa_BindBufferOffsetEXT(GLenum target, GLuint index, GLuint buffer, |