diff options
author | Liam <byteslice@airmail.cc> | 2022-04-04 22:44:01 +0200 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2022-04-04 22:44:01 +0200 |
commit | 1ab771c3adb3e886eef9ed33caef2fa5f8c18205 (patch) | |
tree | 78b1aeb2b16345dda9d762bd48b5e7758a4bcd00 /src/shader_recompiler | |
parent | shader_compiler: support const buffer indirect addressing in GLSL (diff) | |
download | yuzu-1ab771c3adb3e886eef9ed33caef2fa5f8c18205.tar yuzu-1ab771c3adb3e886eef9ed33caef2fa5f8c18205.tar.gz yuzu-1ab771c3adb3e886eef9ed33caef2fa5f8c18205.tar.bz2 yuzu-1ab771c3adb3e886eef9ed33caef2fa5f8c18205.tar.lz yuzu-1ab771c3adb3e886eef9ed33caef2fa5f8c18205.tar.xz yuzu-1ab771c3adb3e886eef9ed33caef2fa5f8c18205.tar.zst yuzu-1ab771c3adb3e886eef9ed33caef2fa5f8c18205.zip |
Diffstat (limited to '')
-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 dca7205c3..a3a09c71c 100644 --- a/src/shader_recompiler/shader_info.h +++ b/src/shader_recompiler/shader_info.h @@ -105,7 +105,7 @@ struct ImageDescriptor { using ImageDescriptors = boost::container::small_vector<ImageDescriptor, 4>; struct Info { - static constexpr size_t MAX_INDIRECT_CBUFS{15}; + static constexpr size_t MAX_INDIRECT_CBUFS{14}; static constexpr size_t MAX_CBUFS{18}; static constexpr size_t MAX_SSBOS{32}; |