diff options
| author | 2022-04-01 17:08:40 -0400 | |
|---|---|---|
| committer | 2022-04-01 17:08:40 -0400 | |
| commit | 7d5a38ea6cb692cdeb5565b36b283d1a34d5d27f (patch) | |
| tree | a443cd005e62a7563fd9c8c7c9a199668774a769 /src/shader_recompiler/shader_info.h | |
| parent | shader_recompiler: support const buffer indirect addressing on OpenGL SPIR-V (diff) | |
| download | yuzu-7d5a38ea6cb692cdeb5565b36b283d1a34d5d27f.tar.gz yuzu-7d5a38ea6cb692cdeb5565b36b283d1a34d5d27f.tar.xz yuzu-7d5a38ea6cb692cdeb5565b36b283d1a34d5d27f.zip | |
shader_compiler: support const buffer indirect addressing in GLSL
Diffstat (limited to 'src/shader_recompiler/shader_info.h')
| -rw-r--r-- | src/shader_recompiler/shader_info.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/shader_info.h b/src/shader_recompiler/shader_info.h index c14856dd0..dca7205c3 100644 --- a/src/shader_recompiler/shader_info.h +++ b/src/shader_recompiler/shader_info.h | |||
| @@ -105,7 +105,7 @@ struct ImageDescriptor { | |||
| 105 | using ImageDescriptors = boost::container::small_vector<ImageDescriptor, 4>; | 105 | using ImageDescriptors = boost::container::small_vector<ImageDescriptor, 4>; |
| 106 | 106 | ||
| 107 | struct Info { | 107 | struct Info { |
| 108 | static constexpr size_t MAX_INDIRECT_CBUFS{16}; | 108 | static constexpr size_t MAX_INDIRECT_CBUFS{15}; |
| 109 | static constexpr size_t MAX_CBUFS{18}; | 109 | static constexpr size_t MAX_CBUFS{18}; |
| 110 | static constexpr size_t MAX_SSBOS{32}; | 110 | static constexpr size_t MAX_SSBOS{32}; |
| 111 | 111 | ||