Update to VK_HEADER_VERSION 161.
+ changed two now outdated warnings into error checks + removed VS2019 builds for now due to an internal compiler error!
This commit is contained in:
@@ -93,7 +93,7 @@ extern "C" __declspec( dllimport ) FARPROC __stdcall GetProcAddress( HINSTANCE h
|
||||
# include <compare>
|
||||
#endif
|
||||
|
||||
static_assert( VK_HEADER_VERSION == 160, "Wrong VK_HEADER_VERSION!" );
|
||||
static_assert( VK_HEADER_VERSION == 161, "Wrong VK_HEADER_VERSION!" );
|
||||
|
||||
// 32-bit vulkan is not typesafe for handles, so don't allow copy constructors on this platform by default.
|
||||
// To enable this feature on 32-bit platforms please define VULKAN_HPP_TYPESAFE_CONVERSION
|
||||
@@ -9211,15 +9211,6 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
}
|
||||
}
|
||||
|
||||
enum class SemaphoreCreateFlagBits : VkSemaphoreCreateFlags
|
||||
{
|
||||
};
|
||||
|
||||
VULKAN_HPP_INLINE std::string to_string( SemaphoreCreateFlagBits )
|
||||
{
|
||||
return "(void)";
|
||||
}
|
||||
|
||||
enum class SemaphoreImportFlagBits : VkSemaphoreImportFlags
|
||||
{
|
||||
eTemporary = VK_SEMAPHORE_IMPORT_TEMPORARY_BIT
|
||||
@@ -15371,6 +15362,15 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
return "{ " + result.substr( 0, result.size() - 3 ) + " }";
|
||||
}
|
||||
|
||||
enum class SemaphoreCreateFlagBits : VkFlags
|
||||
{
|
||||
};
|
||||
|
||||
VULKAN_HPP_INLINE std::string to_string( SemaphoreCreateFlagBits )
|
||||
{
|
||||
return "(void)";
|
||||
}
|
||||
|
||||
using SemaphoreCreateFlags = Flags<SemaphoreCreateFlagBits>;
|
||||
|
||||
VULKAN_HPP_INLINE std::string to_string( SemaphoreCreateFlags )
|
||||
|
||||
Reference in New Issue
Block a user