ttn: fix txs dest size
Signed-off-by: Rob Clark <robdclark@gmail.com> Reviewed-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
@@ -1501,7 +1501,8 @@ ttn_txq(struct ttn_compile *c, nir_alu_dest dest, nir_ssa_def **src)
|
||||
txs->src[0].src = nir_src_for_ssa(ttn_channel(b, src[0], X));
|
||||
txs->src[0].src_type = nir_tex_src_lod;
|
||||
|
||||
nir_ssa_dest_init(&txs->instr, &txs->dest, 3, 32, NULL);
|
||||
nir_ssa_dest_init(&txs->instr, &txs->dest,
|
||||
nir_tex_instr_dest_size(txs), 32, NULL);
|
||||
nir_builder_instr_insert(b, &txs->instr);
|
||||
|
||||
nir_ssa_dest_init(&qlv->instr, &qlv->dest, 1, 32, NULL);
|
||||
|
||||
Reference in New Issue
Block a user