diff --git a/src/dxvk/dxvk_device.h b/src/dxvk/dxvk_device.h index 852a3d01..e63750ce 100644 --- a/src/dxvk/dxvk_device.h +++ b/src/dxvk/dxvk_device.h @@ -33,7 +33,7 @@ namespace dxvk { class DxvkDevice : public RcObject { friend class DxvkSubmissionQueue; - constexpr static VkDeviceSize DefaultStagingBufferSize = 64 * 1024 * 1024; + constexpr static VkDeviceSize DefaultStagingBufferSize = 16 * 1024 * 1024; public: DxvkDevice( @@ -297,9 +297,9 @@ namespace dxvk { Rc m_vkd; VkPhysicalDeviceFeatures m_features; - Rc m_memory; - Rc m_renderPassPool; - Rc m_pipelineManager; + Rc m_memory; + Rc m_renderPassPool; + Rc m_pipelineManager; std::mutex m_submissionLock; VkQueue m_graphicsQueue = VK_NULL_HANDLE;