1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-03-14 04:29:15 +01:00

[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.
This commit is contained in:
Philip Rebohle 2025-02-28 12:07:49 +01:00
parent fcbdff3b72
commit c04410ca00

View File

@ -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,