radeonsi: disable use_gfx12_xfb_intrinsic when use ACO

ACO does not implement nir_ordered_add_loop_gfx12_amd which is for
LLVM only.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/32570>
This commit is contained in:
Qiang Yu 2024-12-03 15:47:24 +08:00 committed by Marge Bot
parent b14cc34415
commit 0fd99353a6

View file

@ -1919,7 +1919,7 @@ static void si_lower_ngg(struct si_shader *shader, nir_shader *nir)
.kill_pointsize = key->ge.opt.kill_pointsize,
.kill_layer = key->ge.opt.kill_layer,
.force_vrs = sel->screen->options.vrs2x2,
.use_gfx12_xfb_intrinsic = true,
.use_gfx12_xfb_intrinsic = !sel->info.base.use_aco_amd,
};
if (nir->info.stage == MESA_SHADER_VERTEX ||