brw: Don't emit HALT_TARGET for VS/TCS/TES/GS

This isn't needed and will allow simplifications in the next patch.

Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/40328>
This commit is contained in:
Kenneth Graunke 2026-03-09 11:29:07 -07:00 committed by Marge Bot
parent 2b6c6f8130
commit 4bfa7a602c

View file

@ -6889,7 +6889,8 @@ brw_from_nir(brw_shader *s)
brw_from_nir_emit_impl(ntb, nir_shader_get_entrypoint((nir_shader *)ntb.nir));
ntb.bld.emit(SHADER_OPCODE_HALT_TARGET);
if (s->stage >= MESA_SHADER_FRAGMENT)
ntb.bld.emit(SHADER_OPCODE_HALT_TARGET);
ralloc_free(ntb.mem_ctx);