diff options
author | Mathias Fröhlich <[email protected]> | 2018-05-13 09:18:57 +0200 |
---|---|---|
committer | Mathias Fröhlich <[email protected]> | 2018-05-17 20:13:39 +0200 |
commit | 5c7e3a90edf81000b8295ad9bb1029b8a24c6007 (patch) | |
tree | 3ac0906de09da51c344f5e54a9eb9228948ff0f0 /src/mesa/vbo/vbo_context.c | |
parent | 9c7be67968aaba224d518dee86dff736a4b599c6 (diff) |
mesa: Remove flush_vertices argument from VAO methods.
The flush_vertices argument is now unused, remove it.
Reviewed-by: Brian Paul <[email protected]>
Signed-off-by: Mathias Fröhlich <[email protected]>
Diffstat (limited to 'src/mesa/vbo/vbo_context.c')
-rw-r--r-- | src/mesa/vbo/vbo_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/vbo/vbo_context.c b/src/mesa/vbo/vbo_context.c index cc6aada8610..ee2e31ab7a2 100644 --- a/src/mesa/vbo/vbo_context.c +++ b/src/mesa/vbo/vbo_context.c @@ -202,7 +202,7 @@ _vbo_CreateContext(struct gl_context *ctx) vbo->VAO = _mesa_new_vao(ctx, ~((GLuint)0)); /* The exec VAO assumes to have all arributes bound to binding 0 */ for (unsigned i = 0; i < VERT_ATTRIB_MAX; ++i) - _mesa_vertex_attrib_binding(ctx, vbo->VAO, i, 0, false); + _mesa_vertex_attrib_binding(ctx, vbo->VAO, i, 0); _math_init_eval(); |