From 06bf56725db1827dfcb86b1d0bcd71d195fda1d2 Mon Sep 17 00:00:00 2001 From: Jan Vesely Date: Thu, 18 Oct 2018 15:15:06 -0400 Subject: [PATCH] radeonsi: Bump number of allowed global buffers to 32 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Fixes assertion failure/crash when running luxmark/luxball on clover. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=108272 CC: mesa-stable@lists.freedesktop.org Signed-off-by: Jan Vesely Reviewed-by: Marek Olšák --- src/gallium/drivers/radeonsi/si_compute.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/radeonsi/si_compute.h b/src/gallium/drivers/radeonsi/si_compute.h index 99b501673c5..57c0bde4aca 100644 --- a/src/gallium/drivers/radeonsi/si_compute.h +++ b/src/gallium/drivers/radeonsi/si_compute.h @@ -29,7 +29,7 @@ #include "si_shader.h" -#define MAX_GLOBAL_BUFFERS 22 +#define MAX_GLOBAL_BUFFERS 32 struct si_compute { struct pipe_reference reference; -- 2.30.2