From: Jason Ekstrand Date: Mon, 30 Mar 2020 17:06:38 +0000 (-0500) Subject: nir: Handle vec8/16 in gather_ssa_types X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ac7a940eba264d3df556df025162df8cbad5da37;p=mesa.git nir: Handle vec8/16 in gather_ssa_types Reviewed-by: Alyssa Rosenzweig Reviewed-by: Ian Romanick Part-of: --- diff --git a/src/compiler/nir/nir_gather_ssa_types.c b/src/compiler/nir/nir_gather_ssa_types.c index a1a7df0ca45..93002d7bff6 100644 --- a/src/compiler/nir/nir_gather_ssa_types.c +++ b/src/compiler/nir/nir_gather_ssa_types.c @@ -112,6 +112,8 @@ nir_gather_ssa_types(nir_function_impl *impl, case nir_op_vec2: case nir_op_vec3: case nir_op_vec4: + case nir_op_vec8: + case nir_op_vec16: for (unsigned i = 0; i < info->num_inputs; i++) { copy_types(alu->src[i].src, &alu->dest.dest, float_types, int_types, &progress);