mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
[dxvk] Tweaked descriptor allocation
This commit is contained in:
parent
e2d9693ac3
commit
3419d55dee
1 changed files with 2 additions and 3 deletions
|
@ -45,9 +45,8 @@ namespace dxvk {
|
|||
|
||||
|
||||
VkDescriptorPool DxvkDescriptorAlloc::createDescriptorPool() {
|
||||
// TODO tune these values, if necessary
|
||||
constexpr uint32_t MaxSets = 64;
|
||||
constexpr uint32_t MaxDesc = 256;
|
||||
constexpr uint32_t MaxSets = 256;
|
||||
constexpr uint32_t MaxDesc = 2048;
|
||||
|
||||
std::array<VkDescriptorPoolSize, 7> pools = {{
|
||||
{ VK_DESCRIPTOR_TYPE_SAMPLER, MaxDesc },
|
||||
|
|
Loading…
Add table
Reference in a new issue