vc4: Drop dead argument from vc4_start_draw().
authorEric Anholt <eric@anholt.net>
Thu, 6 Oct 2016 21:35:58 +0000 (14:35 -0700)
committerEric Anholt <eric@anholt.net>
Fri, 7 Oct 2016 01:09:24 +0000 (18:09 -0700)
src/gallium/drivers/vc4/vc4_draw.c

index 49f9479c247ae39ed3f53ac7b233c1217157a4a5..46c42f14f8465758505fa834d31ffd23d1344bcf 100644 (file)
@@ -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