From 83ae39f727d7aeb43cef277082bcb42093530779 Mon Sep 17 00:00:00 2001 From: Philip Rebohle Date: Tue, 5 Jun 2018 18:45:11 +0200 Subject: [PATCH] [dxvk] Increase memory chunk size to 32 MiB Reduces the number of memory allocations considerably. --- src/dxvk/dxvk_memory.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dxvk/dxvk_memory.h b/src/dxvk/dxvk_memory.h index b6198882e..6af899b3e 100644 --- a/src/dxvk/dxvk_memory.h +++ b/src/dxvk/dxvk_memory.h @@ -251,7 +251,7 @@ namespace dxvk { private: - constexpr static VkDeviceSize ChunkSize = 16 * 1024 * 1024; + constexpr static VkDeviceSize ChunkSize = 32 * 1024 * 1024; const Rc m_vkd; const VkPhysicalDeviceProperties m_devProps;