소스 검색

shader_recompiler: Decrease indirect cbuf limit to match hardware

Liam 4 년 전
부모
커밋
1ab771c3ad
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/shader_recompiler/shader_info.h

+ 1 - 1
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};