From: Jason Ekstrand Date: Wed, 18 May 2016 05:24:59 +0000 (-0700) Subject: vbo: Declare the index range invalid for DrawIndirect X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=df6ec2aba52be66423c90c3f00c599cb2eba4558;p=mesa.git vbo: Declare the index range invalid for DrawIndirect Right now, we're just setting the range to [0, MAX_UINT32] which, while correct isn't helpful. With DrawIndirect, you can't really know what the actual range is so we may as well flag it as being an invalid range. This is what we do for draws with index buffer which is similar (the indices aren't statically known) if a bit simpler. Cc: "11.1 11.2" Reviewed-by: Marek Olšák Reviewed-by: Iago Toral Quiroga Reviewed-by: Ian Romanick Reviewed-by: Kenneth Graunke --- diff --git a/src/mesa/vbo/vbo_context.c b/src/mesa/vbo/vbo_context.c index 9f807a17512..ae5d2653087 100644 --- a/src/mesa/vbo/vbo_context.c +++ b/src/mesa/vbo/vbo_context.c @@ -170,7 +170,7 @@ vbo_draw_indirect_prims(struct gl_context *ctx, } vbo->draw_prims(ctx, prim, draw_count, - ib, GL_TRUE, 0, ~0, + ib, false, ~0, ~0, NULL, 0, ctx->DrawIndirectBuffer);