diff options
author | Roland Scheidegger <[email protected]> | 2018-02-27 03:38:17 +0100 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2018-03-06 05:18:17 +0100 |
commit | cf4a92fda29ca2ab76179287bdd76f4a6183dd0e (patch) | |
tree | 9d6caf9d28ffc8c4f1cea683a91e9ef542784b64 | |
parent | 06e724c7b4ade29868531edb20900859f566a077 (diff) |
gallium: increase PIPE_MAX_SHADER_SAMPLER_VIEWS to 128
Some state trackers require 128.
(There are no plans to increase PIPE_MAX_SAMPLERS too, since with gl
state tracker it's unlikely more than 32 will be needed, if you need
more use bindless.)
-rw-r--r-- | src/gallium/include/pipe/p_state.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/include/pipe/p_state.h b/src/gallium/include/pipe/p_state.h index 640e6ed26dc..4dce399f848 100644 --- a/src/gallium/include/pipe/p_state.h +++ b/src/gallium/include/pipe/p_state.h @@ -64,7 +64,7 @@ extern "C" { #define PIPE_MAX_SAMPLERS 32 #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_SAMPLER_VIEWS 128 #define PIPE_MAX_SHADER_BUFFERS 32 #define PIPE_MAX_SHADER_IMAGES 32 #define PIPE_MAX_TEXTURE_LEVELS 16 |