diff options
author | Mathias Fröhlich <[email protected]> | 2018-02-03 21:16:19 +0100 |
---|---|---|
committer | Mathias Fröhlich <[email protected]> | 2018-02-23 05:34:01 +0100 |
commit | ef8028017ddd0aa27d0db07c0d7409d0519de6fe (patch) | |
tree | 11ffa0218a02c2de2c089229af2381af7bcba1d7 /src/mesa/main/varray.h | |
parent | 354b76ad2070f23b91de14dd6bf4d14ff13e43fc (diff) |
mesa: Add flush_vertices to _mesa_bind_vertex_buffer.
We will need the flush_vertices argument later in this series.
Signed-off-by: Mathias Fröhlich <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/main/varray.h')
-rw-r--r-- | src/mesa/main/varray.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/varray.h b/src/mesa/main/varray.h index 65853557714..b65b82cea7d 100644 --- a/src/mesa/main/varray.h +++ b/src/mesa/main/varray.h @@ -132,7 +132,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); + GLintptr offset, GLsizei stride, bool flush_vertices); extern void GLAPIENTRY _mesa_VertexPointer_no_error(GLint size, GLenum type, GLsizei stride, |