agx: lower fmin/fmax scans

for GL.

Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
Reviewed-by: Marek Olšák <maraeo@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/36649>
This commit is contained in:
Alyssa Rosenzweig
2025-08-07 14:31:47 -04:00
committed by Marge Bot
parent 61db1470a6
commit 70e3234570
+3 -1
View File
@@ -205,7 +205,9 @@ lower_subgroup_filter(const nir_instr *instr, UNUSED const void *data)
switch (nir_intrinsic_reduction_op(intr)) {
case nir_op_imul:
/* no imul hardware scan, always lower it */
case nir_op_fmin:
case nir_op_fmax:
/* no hardware scan for this opcode, always lower it */
return true;
case nir_op_iadd: