aboutsummaryrefslogtreecommitdiff
path: root/www/chromium/files/patch-third__party_vulkan__memory__allocator_src_vk__mem__alloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'www/chromium/files/patch-third__party_vulkan__memory__allocator_src_vk__mem__alloc.h')
-rw-r--r--www/chromium/files/patch-third__party_vulkan__memory__allocator_src_vk__mem__alloc.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/www/chromium/files/patch-third__party_vulkan__memory__allocator_src_vk__mem__alloc.h b/www/chromium/files/patch-third__party_vulkan__memory__allocator_src_vk__mem__alloc.h
deleted file mode 100644
index 54a471aac141..000000000000
--- a/www/chromium/files/patch-third__party_vulkan__memory__allocator_src_vk__mem__alloc.h
+++ /dev/null
@@ -1,11 +0,0 @@
---- third_party/vulkan_memory_allocator/src/vk_mem_alloc.h.orig 2021-06-14 13:18:02 UTC
-+++ third_party/vulkan_memory_allocator/src/vk_mem_alloc.h
-@@ -3946,7 +3946,7 @@ void *vma_aligned_alloc(size_t alignment, size_t size)
-
- return memalign(alignment, size);
- }
--#elif defined(__APPLE__) || defined(__ANDROID__) || (defined(__linux__) && defined(__GLIBCXX__) && !defined(_GLIBCXX_HAVE_ALIGNED_ALLOC))
-+#elif defined(__APPLE__) || defined(__ANDROID__) || defined(__FreeBSD__) || (defined(__linux__) && defined(__GLIBCXX__) && !defined(_GLIBCXX_HAVE_ALIGNED_ALLOC))
- #include <cstdlib>
-
- #if defined(__APPLE__)