mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 08:40:11 +01:00
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:
parent
30ff0857be
commit
59645f05a7
1 changed files with 0 additions and 4 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue