r600: Increase space for IO values to agree with PIPE_MAX_SHADER_IN/OUTPUTS

Signed-off-by: Gert Wollny <gert.wollny@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3225>
This commit is contained in:
Gert Wollny
2019-12-28 15:35:03 +01:00
committed by Marge Bot
parent 4422ce1b04
commit 27cacd28ac
+2 -2
View File
@@ -72,8 +72,8 @@ struct r600_shader {
unsigned nhwatomic;
unsigned nlds;
unsigned nsys_inputs;
struct r600_shader_io input[64];
struct r600_shader_io output[64];
struct r600_shader_io input[PIPE_MAX_SHADER_INPUTS];
struct r600_shader_io output[PIPE_MAX_SHADER_OUTPUTS];
struct r600_shader_atomic atomics[8];
unsigned nhwatomic_ranges;
boolean uses_kill;