Revert "[dxvk] Increase memory chunk size to 32 MiB"

This reverts commit 83ae39f727.

Does not show any considerable advantage over the 16 MiB chunk size
and reduces the effectiveness of the host-visible device-local memory
type on AMD cards.
This commit is contained in:
Philip Rebohle 2018-06-06 23:47:43 +02:00
parent 15b0327243
commit 420b7218ae
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 = 32 * 1024 * 1024;
constexpr static VkDeviceSize ChunkSize = 16 * 1024 * 1024;
const Rc<vk::DeviceFn> m_vkd;
const VkPhysicalDeviceProperties m_devProps;