Module: Mesa Branch: master Commit: 06bf56725db1827dfcb86b1d0bcd71d195fda1d2 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=06bf56725db1827dfcb86b1d0bcd71d195fda1d2
Author: Jan Vesely <[email protected]> Date: Thu Oct 18 15:15:06 2018 -0400 radeonsi: Bump number of allowed global buffers to 32 Fixes assertion failure/crash when running luxmark/luxball on clover. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=108272 CC: [email protected] Signed-off-by: Jan Vesely <[email protected]> Reviewed-by: Marek Olšák <[email protected]> --- 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 99b501673c..57c0bde4ac 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; _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
