diff options
author | Chris Forbes <[email protected]> | 2013-10-13 20:56:42 +1300 |
---|---|---|
committer | Chris Forbes <[email protected]> | 2013-11-25 22:01:36 +1300 |
commit | 3953766e57f96be754229bb109ba5dfdcdbc8b50 (patch) | |
tree | 3dfad25891e0a56a3729c978f4922b26d87f496c /src/mesa/vbo/vbo.h | |
parent | 803fcc329862e58b7b1f5e438cb60b72870f173f (diff) |
mesa: pass indirect buffer to sw primitive restart
Reviewed-by: Kenneth Graunke <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa/vbo/vbo.h')
-rw-r--r-- | src/mesa/vbo/vbo.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/vbo/vbo.h b/src/mesa/vbo/vbo.h index f58fa0b3399..6e1a4aa1ad6 100644 --- a/src/mesa/vbo/vbo.h +++ b/src/mesa/vbo/vbo.h @@ -186,7 +186,8 @@ void vbo_sw_primitive_restart(struct gl_context *ctx, const struct _mesa_prim *prim, GLuint nr_prims, - const struct _mesa_index_buffer *ib); + const struct _mesa_index_buffer *ib, + struct gl_buffer_object *indirect); void GLAPIENTRY _es_Color4f(GLfloat r, GLfloat g, GLfloat b, GLfloat a); |