From 5c7e3a90edf81000b8295ad9bb1029b8a24c6007 Mon Sep 17 00:00:00 2001 From: Mathias Fröhlich Date: Sun, 13 May 2018 09:18:57 +0200 Subject: mesa: Remove flush_vertices argument from VAO methods. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The flush_vertices argument is now unused, remove it. Reviewed-by: Brian Paul Signed-off-by: Mathias Fröhlich --- src/mesa/main/varray.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/mesa/main/varray.h') diff --git a/src/mesa/main/varray.h b/src/mesa/main/varray.h index 1f01fdd5b10..a901bf9171d 100644 --- a/src/mesa/main/varray.h +++ b/src/mesa/main/varray.h @@ -64,20 +64,20 @@ _mesa_update_array_format(struct gl_context *ctx, extern void _mesa_enable_vertex_array_attrib(struct gl_context *ctx, struct gl_vertex_array_object *vao, - gl_vert_attrib attrib, bool flush_vertices); + gl_vert_attrib attrib); extern void _mesa_disable_vertex_array_attrib(struct gl_context *ctx, struct gl_vertex_array_object *vao, - gl_vert_attrib attrib, bool flush_vertices); + gl_vert_attrib attrib); extern void _mesa_vertex_attrib_binding(struct gl_context *ctx, struct gl_vertex_array_object *vao, gl_vert_attrib attribIndex, - GLuint bindingIndex, bool flush_vertices); + GLuint bindingIndex); extern void @@ -85,7 +85,7 @@ _mesa_bind_vertex_buffer(struct gl_context *ctx, struct gl_vertex_array_object *vao, GLuint index, struct gl_buffer_object *vbo, - GLintptr offset, GLsizei stride, bool flush_vertices); + GLintptr offset, GLsizei stride); extern void GLAPIENTRY _mesa_VertexPointer_no_error(GLint size, GLenum type, GLsizei stride, -- cgit v1.2.3