summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/vc4/vc4_draw.c
diff options
context:
space:
mode:
authorEric Anholt <[email protected]>2016-10-06 14:35:58 -0700
committerEric Anholt <[email protected]>2016-10-06 18:09:24 -0700
commitbca9a58d04b556077c540984f2328eaa0ff26f15 (patch)
tree9e9064650f95d56e72731a8c7d1981bfb22aae9b /src/gallium/drivers/vc4/vc4_draw.c
parent9421a6065c4eafbc92657f75da46a4bb70577154 (diff)
vc4: Drop dead argument from vc4_start_draw().
Diffstat (limited to 'src/gallium/drivers/vc4/vc4_draw.c')
-rw-r--r--src/gallium/drivers/vc4/vc4_draw.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/vc4/vc4_draw.c b/src/gallium/drivers/vc4/vc4_draw.c
index 49f9479c247..46c42f14f84 100644
--- a/src/gallium/drivers/vc4/vc4_draw.c
+++ b/src/gallium/drivers/vc4/vc4_draw.c
@@ -70,7 +70,7 @@ vc4_get_draw_cl_space(struct vc4_job *job, int vert_count)
* Does the initial bining command list setup for drawing to a given FBO.
*/
static void
-vc4_start_draw(struct vc4_context *vc4, int vert_count)
+vc4_start_draw(struct vc4_context *vc4)
{
struct vc4_job *job = vc4->job;
@@ -305,7 +305,7 @@ vc4_draw_vbo(struct pipe_context *pctx, const struct pipe_draw_info *info)
vc4->dirty |= VC4_DIRTY_PRIM_MODE;
}
- vc4_start_draw(vc4, info->count);
+ vc4_start_draw(vc4);
vc4_update_compiled_shaders(vc4, info->mode);
uint32_t start_draw_calls_queued = job->draw_calls_queued;
@@ -545,7 +545,7 @@ vc4_clear(struct pipe_context *pctx, unsigned buffers,
job->cleared |= buffers;
job->resolve |= buffers;
- vc4_start_draw(vc4, 0);
+ vc4_start_draw(vc4);
}
static void