summaryrefslogtreecommitdiffstats
path: root/thirdparty/vulkan/patches/VKEnumStringHelper-use-godot-vulkan.patch
diff options
context:
space:
mode:
authorGergely Kis <gergely.kis@migeran.com>2024-09-26 21:46:48 +0200
committerGergely Kis <gergely.kis@migeran.com>2024-09-29 17:53:18 +0200
commit146ba4106f459fd37d130a34da02ef737ac166e4 (patch)
tree979d8607da0f5e4dd38d051bd0abe56e88c9e5cb /thirdparty/vulkan/patches/VKEnumStringHelper-use-godot-vulkan.patch
parent1fc82087658066935bed9e1350d62e334c7e0309 (diff)
downloadredot-engine-146ba4106f459fd37d130a34da02ef737ac166e4.tar.gz
Move Vulkan includes to a central godot_vulkan.h header
Also fixes Vulkan build problem with recent Clang.
Diffstat (limited to 'thirdparty/vulkan/patches/VKEnumStringHelper-use-godot-vulkan.patch')
-rw-r--r--thirdparty/vulkan/patches/VKEnumStringHelper-use-godot-vulkan.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/thirdparty/vulkan/patches/VKEnumStringHelper-use-godot-vulkan.patch b/thirdparty/vulkan/patches/VKEnumStringHelper-use-godot-vulkan.patch
new file mode 100644
index 0000000000..6b56d60181
--- /dev/null
+++ b/thirdparty/vulkan/patches/VKEnumStringHelper-use-godot-vulkan.patch
@@ -0,0 +1,13 @@
+diff --git a/thirdparty/vulkan/vk_enum_string_helper.h b/thirdparty/vulkan/vk_enum_string_helper.h
+index 8026787ad4..7a54b12a38 100644
+--- a/thirdparty/vulkan/vk_enum_string_helper.h
++++ b/thirdparty/vulkan/vk_enum_string_helper.h
+@@ -13,7 +13,7 @@
+ #ifdef __cplusplus
+ #include <string>
+ #endif
+-#include <vulkan/vulkan.h>
++#include "drivers/vulkan/godot_vulkan.h"
+ static inline const char* string_VkResult(VkResult input_value) {
+ switch (input_value) {
+ case VK_SUCCESS: