nir: Handle vec8/16 in gather_ssa_types

Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4365>
This commit is contained in:
Jason Ekstrand 2020-03-30 12:06:38 -05:00 committed by Marge Bot
parent a18c4ee7b0
commit ac7a940eba

View file

@ -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);