Module: Mesa Branch: main Commit: b1cca1122097a224892a1345b57eb6eb7a3a1eb4 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=b1cca1122097a224892a1345b57eb6eb7a3a1eb4
Author: Mike Blumenkrantz <[email protected]> Date: Fri Jul 21 12:48:19 2023 -0400 ir3: bump max xfb output to 128 this is the number of components supported for streamout Reviewed-by: Connor Abbott <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24285> --- src/freedreno/ir3/ir3_shader.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/freedreno/ir3/ir3_shader.h b/src/freedreno/ir3/ir3_shader.h index f852e581abb..4aa1422033b 100644 --- a/src/freedreno/ir3/ir3_shader.h +++ b/src/freedreno/ir3/ir3_shader.h @@ -98,7 +98,7 @@ enum ir3_driver_param { #define IR3_MAX_SHADER_IMAGES 32 #define IR3_MAX_SO_BUFFERS 4 #define IR3_MAX_SO_STREAMS 4 -#define IR3_MAX_SO_OUTPUTS 64 +#define IR3_MAX_SO_OUTPUTS 128 #define IR3_MAX_UBO_PUSH_RANGES 32 /* mirrors SYSTEM_VALUE_BARYCENTRIC_ but starting from 0 */
