Misc: Fix arm32 build

This commit is contained in:
Stenzek
2023-10-02 21:34:34 +10:00
parent fb659d817e
commit da1c28bd16
7 changed files with 70 additions and 16 deletions

View File

@@ -11,7 +11,7 @@
#include <cstdarg>
#include <string_view>
#ifdef _DEBUG
#if defined(_DEBUG) && !defined(CPU_ARCH_ARM32) && !defined(CPU_ARCH_X86)
#define ENABLE_VULKAN_DEBUG_OBJECTS 1
#endif
@@ -413,4 +413,4 @@ static inline void SetObjectName(VkDevice device, T object_handle, const std::st
SetFormattedObjectName(device, object_handle, "%.*s", static_cast<int>(sv.length()), sv.data());
#endif
}
} // namespace Vulkan
} // namespace Vulkan