diff --git a/.pick_status.json b/.pick_status.json index 43717be72c0..0dd01a879fe 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -976,7 +976,7 @@ "description": "Revert \"r600: don't set an index_bias for indirect draw calls\"", "nominated": true, "nomination_type": 2, - "resolution": 0, + "resolution": 1, "master_sha": null, "because_sha": "acdf1a123436cb3fa7d4bbc9cfbb9566c7693de4" }, diff --git a/src/gallium/drivers/r600/r600_state_common.c b/src/gallium/drivers/r600/r600_state_common.c index b1b7936859f..6624a2af25d 100644 --- a/src/gallium/drivers/r600/r600_state_common.c +++ b/src/gallium/drivers/r600/r600_state_common.c @@ -2225,7 +2225,7 @@ static void r600_draw_vbo(struct pipe_context *ctx, const struct pipe_draw_info } index_bias = info->index_bias; } else { - index_bias = indirect ? 0 : draws[0].start; + index_bias = draws[0].start; } /* Set the index offset and primitive restart. */