mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-28 23:20:08 +01:00
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:
parent
a18c4ee7b0
commit
ac7a940eba
1 changed files with 2 additions and 0 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue