From: Rob Clark Date: Mon, 15 May 2017 17:31:44 +0000 (-0400) Subject: ttn: fix dest size for some texture instructions X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=12aa1d15d5b30c49ee424e50a20cadcb7c3ac0c9;p=mesa.git ttn: fix dest size for some texture instructions Some, like lod, don't return 4 components. Signed-off-by: Rob Clark Reviewed-by: Eric Anholt --- diff --git a/src/gallium/auxiliary/nir/tgsi_to_nir.c b/src/gallium/auxiliary/nir/tgsi_to_nir.c index bdcf218c975..d4914acb7d7 100644 --- a/src/gallium/auxiliary/nir/tgsi_to_nir.c +++ b/src/gallium/auxiliary/nir/tgsi_to_nir.c @@ -1464,7 +1464,9 @@ ttn_tex(struct ttn_compile *c, nir_alu_dest dest, nir_ssa_def **src) assert(src_number == num_srcs); - nir_ssa_dest_init(&instr->instr, &instr->dest, 4, 32, NULL); + nir_ssa_dest_init(&instr->instr, &instr->dest, + nir_tex_instr_dest_size(instr), + 32, NULL); nir_builder_instr_insert(b, &instr->instr); /* Resolve the writemask on the texture op. */