diff options
author | Jonathan Marek <[email protected]> | 2019-10-06 20:53:41 -0400 |
---|---|---|
committer | Jonathan Marek <[email protected]> | 2019-10-14 17:48:22 -0400 |
commit | 08003c37b987abd7fc9ef57fdfa326c9210cb1ff (patch) | |
tree | 7f3ffd4c0d524c933af13cb5fd6ce49d1908efb9 /src/gallium/drivers/freedreno/a3xx | |
parent | ce23bc9283cbe1809966530a75e86cc334ef385d (diff) |
freedreno/ir3: remove input ncomp field
Signed-off-by: Jonathan Marek <[email protected]>
Reviewed-by: Rob Clark <[email protected]>
Diffstat (limited to 'src/gallium/drivers/freedreno/a3xx')
-rw-r--r-- | src/gallium/drivers/freedreno/a3xx/fd3_emit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/freedreno/a3xx/fd3_emit.c b/src/gallium/drivers/freedreno/a3xx/fd3_emit.c index 43de2273144..d55628adc47 100644 --- a/src/gallium/drivers/freedreno/a3xx/fd3_emit.c +++ b/src/gallium/drivers/freedreno/a3xx/fd3_emit.c @@ -441,7 +441,7 @@ fd3_emit_vertex_bufs(struct fd_ringbuffer *ring, struct fd3_emit *emit) COND(isint, A3XX_VFD_DECODE_INSTR_INT) | COND(switchnext, A3XX_VFD_DECODE_INSTR_SWITCHNEXT)); - total_in += vp->inputs[i].ncomp; + total_in += util_bitcount(vp->inputs[i].compmask); j++; } } |