diff options
author | Rob Clark <[email protected]> | 2017-01-10 11:43:12 -0500 |
---|---|---|
committer | Rob Clark <[email protected]> | 2017-01-10 19:40:00 -0500 |
commit | 3c71853c9afa54a25f03f47752b74a814aef90e6 (patch) | |
tree | 4f4fe87d1461ecc4103e50d87b278e6c2df19fb2 | |
parent | b48fde15767284814b3df6e9d7946ca7f5eccbfb (diff) |
freedreno/a5xx: fixed instanced
Add missing bit, now that we know where it is.
Signed-off-by: Rob Clark <[email protected]>
-rw-r--r-- | src/gallium/drivers/freedreno/a5xx/fd5_emit.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/freedreno/a5xx/fd5_emit.c b/src/gallium/drivers/freedreno/a5xx/fd5_emit.c index 6ef59c8e423..0aafc4b962d 100644 --- a/src/gallium/drivers/freedreno/a5xx/fd5_emit.c +++ b/src/gallium/drivers/freedreno/a5xx/fd5_emit.c @@ -378,6 +378,7 @@ fd5_emit_vertex_bufs(struct fd_ringbuffer *ring, struct fd5_emit *emit) OUT_PKT4(ring, REG_A5XX_VFD_DECODE(j), 2); OUT_RING(ring, A5XX_VFD_DECODE_INSTR_IDX(j) | A5XX_VFD_DECODE_INSTR_FORMAT(fmt) | + COND(elem->instance_divisor, A5XX_VFD_DECODE_INSTR_INSTANCED) | 0xc0000000); // XXX OUT_RING(ring, MAX2(1, elem->instance_divisor)); /* VFD_DECODE[j].STEP_RATE */ |