diff --git a/src/gallium/drivers/freedreno/a3xx/fd3_draw.c b/src/gallium/drivers/freedreno/a3xx/fd3_draw.c index ece70a732e8..db1f1f5be13 100644 --- a/src/gallium/drivers/freedreno/a3xx/fd3_draw.c +++ b/src/gallium/drivers/freedreno/a3xx/fd3_draw.c @@ -105,7 +105,7 @@ fd3_draw_vbo(struct fd_context *ctx, const struct pipe_draw_info *info, .debug = &ctx->debug, .vtx = &ctx->vtx, .info = info, - .drawid_offset = drawid_offset, + .drawid_offset = drawid_offset, .indirect = indirect, .draw = draw, .key = { diff --git a/src/gallium/drivers/freedreno/a4xx/fd4_draw.c b/src/gallium/drivers/freedreno/a4xx/fd4_draw.c index ad569c47628..cf1828a4345 100644 --- a/src/gallium/drivers/freedreno/a4xx/fd4_draw.c +++ b/src/gallium/drivers/freedreno/a4xx/fd4_draw.c @@ -83,7 +83,7 @@ fd4_draw_vbo(struct fd_context *ctx, const struct pipe_draw_info *info, .debug = &ctx->debug, .vtx = &ctx->vtx, .info = info, - .drawid_offset = drawid_offset, + .drawid_offset = drawid_offset, .indirect = indirect, .draw = draw, .key = { diff --git a/src/gallium/drivers/freedreno/a5xx/fd5_draw.c b/src/gallium/drivers/freedreno/a5xx/fd5_draw.c index 5885c0555eb..d2a8a2f7647 100644 --- a/src/gallium/drivers/freedreno/a5xx/fd5_draw.c +++ b/src/gallium/drivers/freedreno/a5xx/fd5_draw.c @@ -79,7 +79,7 @@ fd5_draw_vbo(struct fd_context *ctx, const struct pipe_draw_info *info, .debug = &ctx->debug, .vtx = &ctx->vtx, .info = info, - .drawid_offset = drawid_offset, + .drawid_offset = drawid_offset, .indirect = indirect, .draw = draw, .key = { diff --git a/src/gallium/drivers/freedreno/a6xx/fd6_draw.c b/src/gallium/drivers/freedreno/a6xx/fd6_draw.c index ec1716c560e..9c1bd2117db 100644 --- a/src/gallium/drivers/freedreno/a6xx/fd6_draw.c +++ b/src/gallium/drivers/freedreno/a6xx/fd6_draw.c @@ -143,7 +143,7 @@ fd6_draw_vbo(struct fd_context *ctx, const struct pipe_draw_info *info, .ctx = ctx, .vtx = &ctx->vtx, .info = info, - .drawid_offset = drawid_offset, + .drawid_offset = drawid_offset, .indirect = indirect, .draw = draw, .key = { diff --git a/src/gallium/drivers/freedreno/freedreno_draw.c b/src/gallium/drivers/freedreno/freedreno_draw.c index 7cf3d4602b1..e5d430182be 100644 --- a/src/gallium/drivers/freedreno/freedreno_draw.c +++ b/src/gallium/drivers/freedreno/freedreno_draw.c @@ -289,7 +289,7 @@ fd_draw_vbo(struct pipe_context *pctx, const struct pipe_draw_info *info, if (info->index_size) { if (info->has_user_indices) { if (num_draws > 1) { - util_draw_multi(pctx, info, drawid_offset, indirect, draws, num_draws); + util_draw_multi(pctx, info, drawid_offset, indirect, draws, num_draws); return; } if (!util_upload_index_buffer(pctx, info, &draws[0], &indexbuf, @@ -305,7 +305,7 @@ fd_draw_vbo(struct pipe_context *pctx, const struct pipe_draw_info *info, } if ((ctx->streamout.num_targets > 0) && (num_draws > 1)) { - util_draw_multi(pctx, info, drawid_offset, indirect, draws, num_draws); + util_draw_multi(pctx, info, drawid_offset, indirect, draws, num_draws); return; }