From d92304852a39bdcb00424f5e05aa1aac7221d497 Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Fri, 7 Mar 2025 09:41:05 -0500 Subject: [PATCH] agx: call nir_lower_is_helper_invocation needed for next patch. Signed-off-by: Alyssa Rosenzweig Reviewed-by: Mary Guillemard Part-of: --- src/asahi/compiler/agx_compile.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/asahi/compiler/agx_compile.c b/src/asahi/compiler/agx_compile.c index 14a9f82c6b1..918cab2dc15 100644 --- a/src/asahi/compiler/agx_compile.c +++ b/src/asahi/compiler/agx_compile.c @@ -3705,6 +3705,7 @@ agx_preprocess_nir(nir_shader *nir) if (nir->info.stage == MESA_SHADER_FRAGMENT) { NIR_PASS(_, nir, agx_nir_lower_frag_sidefx); + NIR_PASS(_, nir, nir_lower_is_helper_invocation); } /* Clean up deref gunk after lowering I/O */