diff options
author | Daniel Schürmann <[email protected]> | 2020-02-14 10:12:03 +0100 |
---|---|---|
committer | Daniel Schürmann <[email protected]> | 2020-04-03 23:13:15 +0100 |
commit | dc69738b0fc787fd9183a815ce43c06e005ec4b3 (patch) | |
tree | 03cded17c5889075eebe6472d0b55ac64876ff10 /src/compiler/nir/nir_lower_alu_to_scalar.c | |
parent | 373f1eb9deab9d9435fba15be6de2a28bde79b87 (diff) |
nir: fix unpack_64_4x16 in lower_alu_to_scalar()
Reviewed-by: Rhys Perry <[email protected]>
Reviewed-By: Timur Kristóf <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4002>
Diffstat (limited to 'src/compiler/nir/nir_lower_alu_to_scalar.c')
-rw-r--r-- | src/compiler/nir/nir_lower_alu_to_scalar.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/compiler/nir/nir_lower_alu_to_scalar.c b/src/compiler/nir/nir_lower_alu_to_scalar.c index e919370ec1a..e3258429b58 100644 --- a/src/compiler/nir/nir_lower_alu_to_scalar.c +++ b/src/compiler/nir/nir_lower_alu_to_scalar.c @@ -208,6 +208,7 @@ lower_alu_instr_scalar(nir_builder *b, nir_instr *instr, void *_data) } case nir_op_unpack_64_2x32: + case nir_op_unpack_64_4x16: case nir_op_unpack_32_2x16: return NULL; |