From: Kristian H. Kristensen Date: Fri, 8 Nov 2019 00:44:33 +0000 (-0800) Subject: freedreno/ir3: Use regid() helper when setting up precolor regs X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4a4fad7f40f13b47ff09d0f1dd43459ea18a327e;p=mesa.git freedreno/ir3: Use regid() helper when setting up precolor regs Signed-off-by: Kristian H. Kristensen Reviewed-by: Rob Clark --- diff --git a/src/freedreno/ir3/ir3_compiler_nir.c b/src/freedreno/ir3/ir3_compiler_nir.c index 3b0dc5a0c8c..b827a4bef6e 100644 --- a/src/freedreno/ir3/ir3_compiler_nir.c +++ b/src/freedreno/ir3/ir3_compiler_nir.c @@ -3440,8 +3440,8 @@ ir3_compile_shader_nir(struct ir3_compiler *compiler, * since the VS chains to TCS and doesn't get the sysvals redelivered. */ - ctx->tcs_header->regs[0]->num = 0; - ctx->primitive_id->regs[0]->num = 1; + ctx->tcs_header->regs[0]->num = regid(0, 0); + ctx->primitive_id->regs[0]->num = regid(0, 1); struct ir3_instruction *precolor[] = { ctx->tcs_header, ctx->primitive_id }; ret = ir3_ra(so, precolor, ARRAY_SIZE(precolor)); } else if (ctx->gs_header) { @@ -3450,8 +3450,8 @@ ir3_compile_shader_nir(struct ir3_compiler *compiler, * the sysvals redelivered. */ - ctx->gs_header->regs[0]->num = 0; - ctx->primitive_id->regs[0]->num = 1; + ctx->gs_header->regs[0]->num = regid(0, 0); + ctx->primitive_id->regs[0]->num = regid(0, 1); struct ir3_instruction *precolor[] = { ctx->gs_header, ctx->primitive_id }; ret = ir3_ra(so, precolor, ARRAY_SIZE(precolor)); } else if (so->num_sampler_prefetch) {