diff options
author | Mark Lobodzinski <[email protected]> | 2018-07-02 14:52:03 -0600 |
---|---|---|
committer | Mark Lobodzinski <[email protected]> | 2018-07-03 11:23:22 -0600 |
commit | 1ebb2c0f7d5911a027a7fcbfe15164caac77e2f8 (patch) | |
tree | 85f1d9cb151e7651773c95c602d335d81710dc74 /include/vulkan/vulkan.hpp | |
parent | 0642c1b85957dec68104f4f6f9c57e9a7edd3541 (diff) | |
download | Vulkan-Headers-1ebb2c0f7d5911a027a7fcbfe15164caac77e2f8.tar.gz Vulkan-Headers-1ebb2c0f7d5911a027a7fcbfe15164caac77e2f8.zip |
header: Update to version 1.1.79 of the Vulkan hdr
- update vk.xml
- update vulkan_core.h
- update validusage.json
- update vulkan.hpp
Diffstat (limited to 'include/vulkan/vulkan.hpp')
-rw-r--r-- | include/vulkan/vulkan.hpp | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/include/vulkan/vulkan.hpp b/include/vulkan/vulkan.hpp index 2efc911..df24587 100644 --- a/include/vulkan/vulkan.hpp +++ b/include/vulkan/vulkan.hpp @@ -53,7 +53,7 @@ # include <cassert> # define VULKAN_HPP_ASSERT assert #endif -static_assert( VK_HEADER_VERSION == 78 , "Wrong VK_HEADER_VERSION!" ); +static_assert( VK_HEADER_VERSION == 79 , "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 @@ -30548,6 +30548,13 @@ public: }; static_assert( sizeof( DescriptorSetLayoutBindingFlagsCreateInfoEXT ) == sizeof( VkDescriptorSetLayoutBindingFlagsCreateInfoEXT ), "struct and wrapper have different size!" ); + enum class VendorId + { + eViv = VK_VENDOR_ID_VIV, + eVsi = VK_VENDOR_ID_VSI, + eKazan = VK_VENDOR_ID_KAZAN + }; + template<typename Dispatch = DispatchLoaderStatic> Result enumerateInstanceVersion( uint32_t* pApiVersion, Dispatch const &d = Dispatch() ); #ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE @@ -43114,6 +43121,17 @@ public: return "{" + result.substr(0, result.size() - 3) + "}"; } + VULKAN_HPP_INLINE std::string to_string(VendorId value) + { + switch (value) + { + case VendorId::eViv: return "Viv"; + case VendorId::eVsi: return "Vsi"; + case VendorId::eKazan: return "Kazan"; + default: return "invalid"; + } + } + class DispatchLoaderDynamic { public: |