diff options
author | Jan Vesely <[email protected]> | 2018-10-18 15:15:06 -0400 |
---|---|---|
committer | Jan Vesely <[email protected]> | 2018-10-18 16:02:42 -0400 |
commit | 06bf56725db1827dfcb86b1d0bcd71d195fda1d2 (patch) | |
tree | 0611fe5a733223167917635cdf2c4430f4234fa3 /src/gallium | |
parent | e71a87775e48f2e26864e6c2198c7625e27bbab1 (diff) |
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]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_compute.h | 2 |
1 files changed, 1 insertions, 1 deletions
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; |