diff options
author | Mark Lobodzinski <[email protected]> | 2018-06-26 12:03:58 -0600 |
---|---|---|
committer | Mark Lobodzinski <[email protected]> | 2018-06-26 13:25:36 -0600 |
commit | 0eb9f92e9946b3acc5f248dc2b034c52da9ebd1e (patch) | |
tree | c0dacbe7f6262a6548511586d43846ecb4d08c36 /include | |
parent | 763929122b21c675f64586e5bfa438341f8de557 (diff) | |
download | Vulkan-Headers-0eb9f92e9946b3acc5f248dc2b034c52da9ebd1e.tar.gz Vulkan-Headers-0eb9f92e9946b3acc5f248dc2b034c52da9ebd1e.zip |
header: Update to version 1.1.78 of the Vulkan hdr
- update vk.xml
- update vulkan_core.h
- updated validusage.json
- updated vulkan.hpp
Diffstat (limited to 'include')
-rw-r--r-- | include/vulkan/vulkan.hpp | 2 | ||||
-rw-r--r-- | include/vulkan/vulkan_core.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/vulkan/vulkan.hpp b/include/vulkan/vulkan.hpp index 6fad92a..2efc911 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 == 77 , "Wrong VK_HEADER_VERSION!" ); +static_assert( VK_HEADER_VERSION == 78 , "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 diff --git a/include/vulkan/vulkan_core.h b/include/vulkan/vulkan_core.h index c27b84d..75b4cf9 100644 --- a/include/vulkan/vulkan_core.h +++ b/include/vulkan/vulkan_core.h @@ -43,7 +43,7 @@ extern "C" { #define VK_VERSION_MINOR(version) (((uint32_t)(version) >> 12) & 0x3ff) #define VK_VERSION_PATCH(version) ((uint32_t)(version) & 0xfff) // Version of this file -#define VK_HEADER_VERSION 77 +#define VK_HEADER_VERSION 78 #define VK_NULL_HANDLE 0 |