summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/shader_info.h
diff options
context:
space:
mode:
authorFernando S <fsahmkow27@gmail.com>2022-04-07 12:40:59 +0200
committerGitHub <noreply@github.com>2022-04-07 12:40:59 +0200
commit4d5900aaa1776b01ec666a14480018aa86e02e6f (patch)
tree6564d65d194725e528fb525dadad3300b58197fa /src/shader_recompiler/shader_info.h
parentMerge pull request #8164 from liamwhite/jit-stub (diff)
parentshader_recompiler: Decrease indirect cbuf limit to match hardware (diff)
downloadyuzu-4d5900aaa1776b01ec666a14480018aa86e02e6f.tar
yuzu-4d5900aaa1776b01ec666a14480018aa86e02e6f.tar.gz
yuzu-4d5900aaa1776b01ec666a14480018aa86e02e6f.tar.bz2
yuzu-4d5900aaa1776b01ec666a14480018aa86e02e6f.tar.lz
yuzu-4d5900aaa1776b01ec666a14480018aa86e02e6f.tar.xz
yuzu-4d5900aaa1776b01ec666a14480018aa86e02e6f.tar.zst
yuzu-4d5900aaa1776b01ec666a14480018aa86e02e6f.zip
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 9d36bd9eb..a3a09c71c 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{14};
static constexpr size_t MAX_CBUFS{18};
static constexpr size_t MAX_SSBOS{32};