Skip to content

Commit

Permalink
Revert "[dxvk] Increase memory chunk size to 32 MiB"
Browse files Browse the repository at this point in the history
This reverts commit 83ae39f.

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.
  • Loading branch information
doitsujin committed Jun 6, 2018
1 parent 15b0327 commit 420b721
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dxvk/dxvk_memory.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 420b721

Please sign in to comment.