summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/freedreno
diff options
context:
space:
mode:
authorRob Clark <[email protected]>2019-05-16 11:33:36 -0700
committerRob Clark <[email protected]>2019-05-20 09:10:12 -0700
commitd200d58e65d5e1836be1bd0dbea3c4c6b8edae48 (patch)
tree3ce6ad5942a96855cbe267f9ce1d70978652781b /src/gallium/drivers/freedreno
parent54d94f5780b582a16ebac2c8122c63e918c2a69b (diff)
freedreno/a6xx: limit IBO state to draw pass
Currently we are only supporting images in FS (and CS) so limit this stateobj to draw pass. Signed-off-by: Rob Clark <[email protected]>
Diffstat (limited to 'src/gallium/drivers/freedreno')
-rw-r--r--src/gallium/drivers/freedreno/a6xx/fd6_emit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/freedreno/a6xx/fd6_emit.c b/src/gallium/drivers/freedreno/a6xx/fd6_emit.c
index 23449ee8923..d17be0949a6 100644
--- a/src/gallium/drivers/freedreno/a6xx/fd6_emit.c
+++ b/src/gallium/drivers/freedreno/a6xx/fd6_emit.c
@@ -1050,7 +1050,7 @@ fd6_emit_state(struct fd_ringbuffer *ring, struct fd6_emit *emit)
OUT_PKT4(obj, REG_A6XX_SP_IBO_COUNT, 1);
OUT_RING(obj, mapping->num_ibo);
- fd6_emit_add_group(emit, obj, FD6_GROUP_IBO, 0x7);
+ fd6_emit_add_group(emit, obj, FD6_GROUP_IBO, 0x6);
fd_ringbuffer_del(obj);
fd_ringbuffer_del(state);
}