r600: Force CF when emitting a NOP on R600 in gs copy shader

Fixes: 9d4104d4fb
    r600: Explicitly force new CF in gs copy shader

Signed-off-by: Gert Wollny <gert.wollny@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24391>
This commit is contained in:
Gert Wollny 2023-07-30 12:57:30 +02:00 committed by Marge Bot
parent 8d7f682bdb
commit 99aeea467b

View file

@ -743,6 +743,7 @@ int generate_gs_copy_shader(struct r600_context *rctx,
/* bc adds nops - copy it */
if (ctx.bc->gfx_level == R600) {
ctx.bc->force_add_cf = 1;
memset(&alu, 0, sizeof(struct r600_bytecode_alu));
alu.op = ALU_OP0_NOP;
alu.last = 1;