nouveau/codegen: Drop writemask check

Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
Reviewed-by: M Henning <drawoc@darkrefraction.com>
Reviewed-by: Karol Herbst <kherbst@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24471>
This commit is contained in:
Alyssa Rosenzweig 2023-08-01 14:40:58 -04:00 committed by Marge Bot
parent 30ff0857be
commit 59645f05a7

View file

@ -2480,10 +2480,6 @@ Converter::visit(nir_load_const_instr *insn)
if (nir_dest_num_components(insn->dest.dest) > 1) { \
ERROR("nir_alu_instr only supported with 1 component!\n"); \
return false; \
} \
if (insn->dest.write_mask != 1) { \
ERROR("nir_alu_instr only with write_mask of 1 supported!\n"); \
return false; \
}
bool
Converter::visit(nir_alu_instr *insn)