From: Eric Anholt Date: Tue, 9 Jan 2018 22:59:19 +0000 (-0800) Subject: broadcom/vc5: Fix per-tile extra clear packet. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=80c84241af9fbb1e23fe630c5d4fd6d266a74060;p=mesa.git broadcom/vc5: Fix per-tile extra clear packet. I accidentally emitted this into the RCL instead of the per-tile generic list, so we wouldn't get tiles after the first cleared. --- diff --git a/src/gallium/drivers/vc5/vc5_rcl.c b/src/gallium/drivers/vc5/vc5_rcl.c index 8ed8c486f22..56c6a16cc51 100644 --- a/src/gallium/drivers/vc5/vc5_rcl.c +++ b/src/gallium/drivers/vc5/vc5_rcl.c @@ -221,7 +221,7 @@ vc5_rcl_emit_stores(struct vc5_job *job, struct vc5_cl *cl) * MSAA color clears, then we need to clear the color buffers * now. */ - cl_emit(&job->rcl, STORE_TILE_BUFFER_GENERAL, store) { + cl_emit(cl, STORE_TILE_BUFFER_GENERAL, store) { store.buffer_to_store = NONE; } }