From d7764677c88ac54ad18a8c7aee24d8bb009a56a5 Mon Sep 17 00:00:00 2001 From: Gamer64 <76565986+Gamer64ytb@users.noreply.github.com> Date: Thu, 26 Jun 2025 12:20:48 +0200 Subject: [PATCH] Update vulkan_memory_allocator.cpp --- src/video_core/vulkan_common/vulkan_memory_allocator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video_core/vulkan_common/vulkan_memory_allocator.cpp b/src/video_core/vulkan_common/vulkan_memory_allocator.cpp index fec9bf4f66..7b9d459fd3 100644 --- a/src/video_core/vulkan_common/vulkan_memory_allocator.cpp +++ b/src/video_core/vulkan_common/vulkan_memory_allocator.cpp @@ -344,7 +344,7 @@ bool MemoryAllocator::TryAllocMemory(VkMemoryPropertyFlags flags, u32 type_mask, const u64 aligned_size = (device.GetDriverID() == VK_DRIVER_ID_QUALCOMM_PROPRIETARY) ? Common::AlignUp(size, 4096) : // Adreno requires 4KB alignment - size; // Others (NVIDIA, AMD, Intel, etc)Add commentMore actions + size; // Others (NVIDIA, AMD, Intel, etc) vk::DeviceMemory memory = device.GetLogical().TryAllocateMemory({ .sType = VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO,