diff options
| author | 2022-04-01 11:17:54 -0400 | |
|---|---|---|
| committer | 2022-04-01 11:17:54 -0400 | |
| commit | a45baa0e786148f41394fc819108649d8eb6ba3a (patch) | |
| tree | f8ac1c5f1ebd2a02662c65affe96deb504d666ea /src/shader_recompiler/shader_info.h | |
| parent | Merge pull request #8107 from german77/fullscreen (diff) | |
| download | yuzu-a45baa0e786148f41394fc819108649d8eb6ba3a.tar.gz yuzu-a45baa0e786148f41394fc819108649d8eb6ba3a.tar.xz yuzu-a45baa0e786148f41394fc819108649d8eb6ba3a.zip | |
shader_recompiler: support const buffer indirect addressing on OpenGL SPIR-V
Diffstat (limited to 'src/shader_recompiler/shader_info.h')
| -rw-r--r-- | src/shader_recompiler/shader_info.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shader_recompiler/shader_info.h b/src/shader_recompiler/shader_info.h index 9d36bd9eb..c14856dd0 100644 --- a/src/shader_recompiler/shader_info.h +++ b/src/shader_recompiler/shader_info.h | |||
| @@ -105,6 +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_CBUFS{18}; | 109 | static constexpr size_t MAX_CBUFS{18}; |
| 109 | static constexpr size_t MAX_SSBOS{32}; | 110 | static constexpr size_t MAX_SSBOS{32}; |
| 110 | 111 | ||