diff options
author | Marek Olšák <[email protected]> | 2015-07-05 14:34:13 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2015-07-16 16:52:17 +0200 |
commit | b73bec0ecd43861337daf9663e242d2b44f36dbd (patch) | |
tree | 4d618eef5e8fdc446b590541d15c8cd712a5631a /src/gallium/include/pipe | |
parent | f9f79d29ce75c681c46bdbac5aa3f19ee1adb93b (diff) |
gallium: add new limits for shader buffers and images
Reviewed-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src/gallium/include/pipe')
-rw-r--r-- | src/gallium/include/pipe/p_state.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/include/pipe/p_state.h b/src/gallium/include/pipe/p_state.h index a18f12e8a87..1c529f7d078 100644 --- a/src/gallium/include/pipe/p_state.h +++ b/src/gallium/include/pipe/p_state.h @@ -61,7 +61,8 @@ extern "C" { #define PIPE_MAX_SHADER_INPUTS 80 /* 32 GENERIC + 32 PATCH + 16 others */ #define PIPE_MAX_SHADER_OUTPUTS 80 /* 32 GENERIC + 32 PATCH + 16 others */ #define PIPE_MAX_SHADER_SAMPLER_VIEWS 32 -#define PIPE_MAX_SHADER_RESOURCES 32 +#define PIPE_MAX_SHADER_BUFFERS 32 +#define PIPE_MAX_SHADER_IMAGES 32 #define PIPE_MAX_TEXTURE_LEVELS 16 #define PIPE_MAX_SO_BUFFERS 4 #define PIPE_MAX_SO_OUTPUTS 64 |