728dbeab69
Updates to volk, vulkan headers, `vk_enum_string_helper.h`, VMA, glslang, spirv-reflect. VMA doesn't tag SDK releases specifically, and still hasn't had a tagged release since 3.0.1, but the Vulkan SDK now seems to ship a recent master commit, so we do the same.
17 lines
512 B
Diff
17 lines
512 B
Diff
diff --git a/thirdparty/vulkan/vk_enum_string_helper.h b/thirdparty/vulkan/vk_enum_string_helper.h
|
|
index 8c77dd3ee5..be968c091d 100644
|
|
--- a/thirdparty/vulkan/vk_enum_string_helper.h
|
|
+++ b/thirdparty/vulkan/vk_enum_string_helper.h
|
|
@@ -23,7 +23,11 @@
|
|
// NOLINTBEGIN
|
|
#pragma once
|
|
#include <string>
|
|
-#include <vulkan/vulkan.h>
|
|
+#ifdef USE_VOLK
|
|
+ #include <volk.h>
|
|
+#else
|
|
+ #include <vulkan/vulkan.h>
|
|
+#endif
|
|
|
|
static inline bool IsDuplicatePnext(VkStructureType input_value) {
|
|
switch (input_value) {
|