mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 11:48:06 +02:00
pan/bit: Add min/max support to interpreter
Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4470>
This commit is contained in:
parent
e9967e9f80
commit
0e0f7f110c
1 changed files with 10 additions and 1 deletions
|
|
@ -184,6 +184,8 @@ bit_write(struct bit_state *s, unsigned index, nir_alu_type T, bit_t value, bool
|
|||
bit_make_poly(add, a + b);
|
||||
bit_make_float(fma, (a * b) + c);
|
||||
bit_make_poly(mov, a);
|
||||
bit_make_poly(min, MIN2(a, b));
|
||||
bit_make_poly(max, MAX2(a, b));
|
||||
|
||||
/* Modifiers */
|
||||
|
||||
|
|
@ -317,9 +319,16 @@ bit_step(struct bit_state *s, bi_instruction *ins, bool FMA)
|
|||
|
||||
case BI_FREXP:
|
||||
case BI_ISUB:
|
||||
case BI_MINMAX:
|
||||
unreachable("Unsupported op");
|
||||
|
||||
case BI_MINMAX: {
|
||||
if (ins->op.minmax == BI_MINMAX_MIN) {
|
||||
bpoly(min);
|
||||
} else {
|
||||
bpoly(max);
|
||||
}
|
||||
}
|
||||
|
||||
case BI_MOV:
|
||||
bpoly(mov);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue