Mesa (20.1): i965: Use correct constant for max_variable_local_size

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Wed Apr 29 17:49:43 UTC 2020


Module: Mesa
Branch: 20.1
Commit: 882928dcaa2133fe07b73e7e962d50625c8e6a03
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=882928dcaa2133fe07b73e7e962d50625c8e6a03

Author: Caio Marcelo de Oliveira Filho <caio.oliveira at intel.com>
Date:   Tue Apr 28 21:05:05 2020 -0700

i965: Use correct constant for max_variable_local_size

Fixes: 5664bd6db38 ("i965: Implement ARB_compute_variable_group_size")
Reviewed-by: Jordan Justen <jordan.l.justen at intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4799>

---

 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;
    }



More information about the mesa-commit mailing list