aboutsummaryrefslogtreecommitdiff
path: root/src/shader_recompiler/shader_info.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2022-04-01 11:17:54 -0400
committerLiam <byteslice@airmail.cc>2022-04-01 11:17:54 -0400
commita45baa0e786148f41394fc819108649d8eb6ba3a (patch)
treef8ac1c5f1ebd2a02662c65affe96deb504d666ea /src/shader_recompiler/shader_info.h
parent8e9d253687c2159dd9532e3a057fb312ce7b3c3b (diff)
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.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shader_recompiler/shader_info.h b/src/shader_recompiler/shader_info.h
index 9d36bd9ebc..c14856dd02 100644
--- a/src/shader_recompiler/shader_info.h
+++ b/src/shader_recompiler/shader_info.h
@@ -105,6 +105,7 @@ struct ImageDescriptor {
using ImageDescriptors = boost::container::small_vector<ImageDescriptor, 4>;
struct Info {
+ static constexpr size_t MAX_INDIRECT_CBUFS{16};
static constexpr size_t MAX_CBUFS{18};
static constexpr size_t MAX_SSBOS{32};