mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 23:50:11 +01:00
r600/sfn: use cnde instead of cnde_int
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6814>
This commit is contained in:
parent
952cf95f8b
commit
8a9876a29a
1 changed files with 1 additions and 1 deletions
|
|
@ -151,7 +151,7 @@ bool EmitAluInstruction::do_emit(nir_instr* ir)
|
|||
|
||||
|
||||
case nir_op_ffma: return emit_alu_op3(instr, op3_muladd_ieee);
|
||||
case nir_op_bcsel: return emit_alu_op3(instr, op3_cnde_int, {0, 2, 1});
|
||||
case nir_op_bcsel: return emit_alu_op3(instr, op3_cnde, {0, 2, 1});
|
||||
case nir_op_vec2: return emit_create_vec(instr, 2);
|
||||
case nir_op_vec3: return emit_create_vec(instr, 3);
|
||||
case nir_op_vec4: return emit_create_vec(instr, 4);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue