From c04410ca00f33162d0875bc8500d3f8185bc73df Mon Sep 17 00:00:00 2001 From: Philip Rebohle Date: Fri, 28 Feb 2025 12:07:49 +0100 Subject: [PATCH] [dxbc] Increase maximum size of embedded icbs to 256 bytes Gives drivers more info, while still avoiding duplication of large ICBs when compiling the same shader into a large number of pipelines. --- src/dxbc/dxbc_compiler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dxbc/dxbc_compiler.cpp b/src/dxbc/dxbc_compiler.cpp index 79126c8ad..d0734061b 100644 --- a/src/dxbc/dxbc_compiler.cpp +++ b/src/dxbc/dxbc_compiler.cpp @@ -3,7 +3,7 @@ namespace dxvk { constexpr uint32_t Icb_BindingSlotId = 14; - constexpr uint32_t Icb_MaxBakedDwords = 16; + constexpr uint32_t Icb_MaxBakedDwords = 64; DxbcCompiler::DxbcCompiler( const std::string& fileName,