mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +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:
parent
fcbdff3b72
commit
c04410ca00
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@
|
||||||
namespace dxvk {
|
namespace dxvk {
|
||||||
|
|
||||||
constexpr uint32_t Icb_BindingSlotId = 14;
|
constexpr uint32_t Icb_BindingSlotId = 14;
|
||||||
constexpr uint32_t Icb_MaxBakedDwords = 16;
|
constexpr uint32_t Icb_MaxBakedDwords = 64;
|
||||||
|
|
||||||
DxbcCompiler::DxbcCompiler(
|
DxbcCompiler::DxbcCompiler(
|
||||||
const std::string& fileName,
|
const std::string& fileName,
|
||||||
|
|
Loading…
Add table
Reference in a new issue