[dxvk] Increase memory chunk size to 32 MiB

Reduces the number of memory allocations considerably.
This commit is contained in:
Philip Rebohle 2018-06-05 18:45:11 +02:00
parent 1fdcbdfa40
commit 83ae39f727
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99
1 changed files with 1 additions and 1 deletions

View File

@ -251,7 +251,7 @@ namespace dxvk {
private:
constexpr static VkDeviceSize ChunkSize = 16 * 1024 * 1024;
constexpr static VkDeviceSize ChunkSize = 32 * 1024 * 1024;
const Rc<vk::DeviceFn> m_vkd;
const VkPhysicalDeviceProperties m_devProps;