projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f5bbdf7
)
nir: Handle vec8/16 in bool_to_bitsize
author
Jason Ekstrand
<jason@jlekstrand.net>
Mon, 30 Mar 2020 16:59:25 +0000
(11:59 -0500)
committer
Marge Bot
<eric+marge@anholt.net>
Tue, 31 Mar 2020 00:18:05 +0000
(
00:18
+0000)
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>
src/compiler/nir/nir_lower_bool_to_bitsize.c
patch
|
blob
|
history
diff --git
a/src/compiler/nir/nir_lower_bool_to_bitsize.c
b/src/compiler/nir/nir_lower_bool_to_bitsize.c
index f45013ba1b150f9b86ce002622972ca858d0a8c2..ef9aa81f1706e3e9f29526dd9e340f1f0fbdc865 100644
(file)
--- a/
src/compiler/nir/nir_lower_bool_to_bitsize.c
+++ b/
src/compiler/nir/nir_lower_bool_to_bitsize.c
@@
-103,6
+103,8
@@
lower_alu_instr(nir_builder *b, nir_alu_instr *alu)
case nir_op_vec2:
case nir_op_vec3:
case nir_op_vec4:
+ case nir_op_vec8:
+ case nir_op_vec16:
case nir_op_inot:
case nir_op_iand:
case nir_op_ior:
@@
-150,6
+152,8
@@
lower_alu_instr(nir_builder *b, nir_alu_instr *alu)
case nir_op_vec2:
case nir_op_vec3:
case nir_op_vec4:
+ case nir_op_vec8:
+ case nir_op_vec16:
case nir_op_inot:
case nir_op_iand:
case nir_op_ior: