mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-26 17:10:11 +01:00
aco: Un-swap addressable VGPRs/SGPRs in RT prolog
Fixes: 6446b79168 ("aco: implement select_rt_prolog()")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22188>
This commit is contained in:
parent
83a38987b1
commit
424825c6e5
1 changed files with 2 additions and 2 deletions
|
|
@ -11910,8 +11910,8 @@ select_rt_prolog(Program* program, ac_shader_config* config,
|
|||
bld.sop1(aco_opcode::s_setpc_b64, Operand(out_shader_pc, s2));
|
||||
|
||||
program->config->float_mode = program->blocks[0].fp_mode.val;
|
||||
program->config->num_vgprs = get_vgpr_alloc(program, num_sgprs);
|
||||
program->config->num_sgprs = get_sgpr_alloc(program, num_vgprs);
|
||||
program->config->num_vgprs = get_vgpr_alloc(program, num_vgprs);
|
||||
program->config->num_sgprs = get_sgpr_alloc(program, num_sgprs);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue