From 882928dcaa2133fe07b73e7e962d50625c8e6a03 Mon Sep 17 00:00:00 2001 From: Caio Marcelo de Oliveira Filho Date: Tue, 28 Apr 2020 21:05:05 -0700 Subject: [PATCH] i965: Use correct constant for max_variable_local_size Fixes: 5664bd6db38 ("i965: Implement ARB_compute_variable_group_size") Reviewed-by: Jordan Justen Part-of: --- src/mesa/drivers/dri/i965/brw_cs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/drivers/dri/i965/brw_cs.c b/src/mesa/drivers/dri/i965/brw_cs.c index 5b4ff456a0d..d01fd22f27f 100644 --- a/src/mesa/drivers/dri/i965/brw_cs.c +++ b/src/mesa/drivers/dri/i965/brw_cs.c @@ -116,7 +116,7 @@ brw_codegen_cs_prog(struct brw_context *brw, if (nir->info.cs.local_size_variable) { prog_data.uses_variable_group_size = true; nir->info.cs.max_variable_local_size = - gl_ctx->Const.MaxComputeWorkGroupSize[2]; + gl_ctx->Const.MaxComputeVariableGroupInvocations; } else { prog_data.uses_variable_group_size = false; } -- 2.30.2