From: Dave Airlie Date: Mon, 30 Nov 2015 05:59:28 +0000 (+1000) Subject: r600/shader: increase number of inputs/outputs to 64. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7b5878ee0491e7a93914389a8369cd6752b9757d;p=mesa.git r600/shader: increase number of inputs/outputs to 64. Tessellation exceeds these sometimes, so increase them for now. Signed-off-by: Dave Airlie --- diff --git a/src/gallium/drivers/r600/r600_shader.h b/src/gallium/drivers/r600/r600_shader.h index f5b1c4b3f3b..cfdb0200333 100644 --- a/src/gallium/drivers/r600/r600_shader.h +++ b/src/gallium/drivers/r600/r600_shader.h @@ -62,8 +62,8 @@ struct r600_shader { unsigned ninput; unsigned noutput; unsigned nlds; - struct r600_shader_io input[40]; - struct r600_shader_io output[40]; + struct r600_shader_io input[64]; + struct r600_shader_io output[64]; boolean uses_kill; boolean fs_write_all; boolean two_side;