diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/vulkan_common/vulkan_memory_allocator.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/vulkan_common/vulkan_memory_allocator.cpp b/src/video_core/vulkan_common/vulkan_memory_allocator.cpp index a2ef0efa4..42f3ee0b4 100644 --- a/src/video_core/vulkan_common/vulkan_memory_allocator.cpp +++ b/src/video_core/vulkan_common/vulkan_memory_allocator.cpp | |||
| @@ -221,8 +221,8 @@ vk::Image MemoryAllocator::CreateImage(const VkImageCreateInfo& ci) const { | |||
| 221 | const VmaAllocationCreateInfo alloc_ci = { | 221 | const VmaAllocationCreateInfo alloc_ci = { |
| 222 | .flags = VMA_ALLOCATION_CREATE_WITHIN_BUDGET_BIT, | 222 | .flags = VMA_ALLOCATION_CREATE_WITHIN_BUDGET_BIT, |
| 223 | .usage = VMA_MEMORY_USAGE_AUTO_PREFER_DEVICE, | 223 | .usage = VMA_MEMORY_USAGE_AUTO_PREFER_DEVICE, |
| 224 | .requiredFlags = VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT, | 224 | .requiredFlags = 0, |
| 225 | .preferredFlags = 0, | 225 | .preferredFlags = VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT, |
| 226 | .memoryTypeBits = 0, | 226 | .memoryTypeBits = 0, |
| 227 | .pool = VK_NULL_HANDLE, | 227 | .pool = VK_NULL_HANDLE, |
| 228 | .pUserData = nullptr, | 228 | .pUserData = nullptr, |