1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2024-12-01 07:24:12 +01:00

[dxvk] Fixed DxvkPhysicalBufferSlice initialization

This commit is contained in:
Philip Rebohle 2018-01-18 18:53:33 +01:00
parent 9334873188
commit 82ffa88efd
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99

View File

@ -196,9 +196,9 @@ namespace dxvk {
private:
Rc<DxvkPhysicalBuffer> m_buffer;
VkDeviceSize m_offset;
VkDeviceSize m_length;
Rc<DxvkPhysicalBuffer> m_buffer = nullptr;
VkDeviceSize m_offset = 0;
VkDeviceSize m_length = 0;
};