diff options
Diffstat (limited to 'src/gallium/drivers/vc5/vc5_job.c')
-rw-r--r-- | src/gallium/drivers/vc5/vc5_job.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/gallium/drivers/vc5/vc5_job.c b/src/gallium/drivers/vc5/vc5_job.c index aa56ad6f241..213a978e3cf 100644 --- a/src/gallium/drivers/vc5/vc5_job.c +++ b/src/gallium/drivers/vc5/vc5_job.c @@ -377,14 +377,6 @@ vc5_job_submit(struct vc5_context *vc5, struct vc5_job *job) if (!job->needs_flush) goto done; - /* The RCL setup would choke if the draw bounds cause no drawing, so - * just drop the drawing if that's the case. - */ - if (job->draw_max_x <= job->draw_min_x || - job->draw_max_y <= job->draw_min_y) { - goto done; - } - if (vc5->screen->devinfo.ver >= 41) v3d41_emit_rcl(job); else |