mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-18 16:50:37 +02:00
lima/ppir: add missing handling of min/max ops for vec4 add slot
Signed-off-by: Vasily Khoruzhick <anarsoul@gmail.com> Reviewed-by: Qiang Yu <yuq825@gmail.com>
This commit is contained in:
parent
5980565a37
commit
b412e05751
1 changed files with 6 additions and 0 deletions
|
|
@ -328,6 +328,12 @@ static void ppir_codegen_encode_vec_add(ppir_node *node, void *code)
|
|||
case ppir_op_select:
|
||||
f->op = ppir_codegen_vec4_acc_op_sel;
|
||||
break;
|
||||
case ppir_op_max:
|
||||
f->op = ppir_codegen_vec4_acc_op_max;
|
||||
break;
|
||||
case ppir_op_min:
|
||||
f->op = ppir_codegen_vec4_acc_op_min;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue