Module: Mesa Branch: main Commit: ba72946fa3799200a21ed35d55ff4017fa07db67 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=ba72946fa3799200a21ed35d55ff4017fa07db67
Author: Mike Blumenkrantz <[email protected]> Date: Fri Jul 21 12:48:19 2023 -0400 gallium: bump PIPE_MAX_SO_OUTPUTS to 128 this is the number of components supported for streamout Reviewed-by: Marek Olšák <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24285> --- src/gallium/include/pipe/p_state.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/include/pipe/p_state.h b/src/gallium/include/pipe/p_state.h index 549e4d21c05..e1953e1af83 100644 --- a/src/gallium/include/pipe/p_state.h +++ b/src/gallium/include/pipe/p_state.h @@ -70,7 +70,7 @@ extern "C" { #define PIPE_MAX_SHADER_IMAGES 64 #define PIPE_MAX_TEXTURE_LEVELS 16 #define PIPE_MAX_SO_BUFFERS 4 -#define PIPE_MAX_SO_OUTPUTS 64 +#define PIPE_MAX_SO_OUTPUTS 128 #define PIPE_MAX_VIEWPORTS 16 #define PIPE_MAX_CLIP_OR_CULL_DISTANCE_COUNT 8 #define PIPE_MAX_CLIP_OR_CULL_DISTANCE_ELEMENT_COUNT 2
