diff options
Diffstat (limited to 'chromium/gpu/vulkan/vma_wrapper.h')
-rw-r--r-- | chromium/gpu/vulkan/vma_wrapper.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/chromium/gpu/vulkan/vma_wrapper.h b/chromium/gpu/vulkan/vma_wrapper.h index 02e3b5ff7ae..502bdbcd15e 100644 --- a/chromium/gpu/vulkan/vma_wrapper.h +++ b/chromium/gpu/vulkan/vma_wrapper.h @@ -66,16 +66,16 @@ COMPONENT_EXPORT(VULKAN) void FreeMemory(VmaAllocator allocator, VmaAllocation allocation); COMPONENT_EXPORT(VULKAN) -void FlushAllocation(VmaAllocator allocator, - VmaAllocation allocation, - VkDeviceSize offset, - VkDeviceSize size); +VkResult FlushAllocation(VmaAllocator allocator, + VmaAllocation allocation, + VkDeviceSize offset, + VkDeviceSize size); COMPONENT_EXPORT(VULKAN) -void InvalidateAllocation(VmaAllocator allocator, - VmaAllocation allocation, - VkDeviceSize offset, - VkDeviceSize size); +VkResult InvalidateAllocation(VmaAllocator allocator, + VmaAllocation allocation, + VkDeviceSize offset, + VkDeviceSize size); COMPONENT_EXPORT(VULKAN) void GetAllocationInfo(VmaAllocator allocator, |