diff options
author | Eric Anholt <eric@anholt.net> | 2018-01-09 14:59:19 -0800 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2018-01-12 21:52:02 -0800 |
commit | 80c84241af9fbb1e23fe630c5d4fd6d266a74060 (patch) | |
tree | 6a6124f1572b164be1416784b9b37f77f2459854 /src | |
parent | f13fe510d1d5d68b63f90ce63a7153220a25e138 (diff) |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/vc5/vc5_rcl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/vc5/vc5_rcl.c b/src/gallium/drivers/vc5/vc5_rcl.c index 8ed8c486f2..56c6a16cc5 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; } } |