Merge pull request #611 from asuessenbach/141

Updated to VK_HEADER_VERSION 141.
This commit is contained in:
Andreas Süßenbach 2020-05-18 14:10:58 +02:00 committed by GitHub
commit 42f1a54d54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 3 deletions

@ -1 +1 @@
Subproject commit 9250d5ae8f50202005233dc0512a1d460c8b4833
Subproject commit 09531f27933bf04bffde9074acb302e026e8f181

View File

@ -78,7 +78,7 @@
# include <compare>
#endif
static_assert( VK_HEADER_VERSION == 140, "Wrong VK_HEADER_VERSION!" );
static_assert( VK_HEADER_VERSION == 141, "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
@ -5939,6 +5939,7 @@ namespace VULKAN_HPP_NAMESPACE
eGoogleSwiftshader = VK_DRIVER_ID_GOOGLE_SWIFTSHADER,
eGgpProprietary = VK_DRIVER_ID_GGP_PROPRIETARY,
eBroadcomProprietary = VK_DRIVER_ID_BROADCOM_PROPRIETARY,
eMesaLlvmpipe = VK_DRIVER_ID_MESA_LLVMPIPE,
eIntelOpenSourceMesa = VK_DRIVER_ID_INTEL_OPEN_SOURCE_MESA_KHR
};
using DriverIdKHR = DriverId;
@ -5959,6 +5960,7 @@ namespace VULKAN_HPP_NAMESPACE
case DriverId::eGoogleSwiftshader: return "GoogleSwiftshader";
case DriverId::eGgpProprietary: return "GgpProprietary";
case DriverId::eBroadcomProprietary: return "BroadcomProprietary";
case DriverId::eMesaLlvmpipe: return "MesaLlvmpipe";
default: return "invalid";
}
}
@ -10430,7 +10432,8 @@ namespace VULKAN_HPP_NAMESPACE
eVIV = VK_VENDOR_ID_VIV,
eVSI = VK_VENDOR_ID_VSI,
eKazan = VK_VENDOR_ID_KAZAN,
eCodeplay = VK_VENDOR_ID_CODEPLAY
eCodeplay = VK_VENDOR_ID_CODEPLAY,
eMESA = VK_VENDOR_ID_MESA
};
VULKAN_HPP_INLINE std::string to_string( VendorId value )
@ -10441,6 +10444,7 @@ namespace VULKAN_HPP_NAMESPACE
case VendorId::eVSI: return "VSI";
case VendorId::eKazan: return "Kazan";
case VendorId::eCodeplay: return "Codeplay";
case VendorId::eMESA: return "MESA";
default: return "invalid";
}
}