diff options
author | Chad Versace <[email protected]> | 2015-07-10 20:06:09 -0700 |
---|---|---|
committer | Chad Versace <[email protected]> | 2015-07-10 20:06:09 -0700 |
commit | 1c4238a8e50e10faf6034069bc0262d18ebcf797 (patch) | |
tree | b3d8aa185783891d9687aa1c2b198867827c4909 | |
parent | f43a304dc6284c8c98b9bcef32283b7715f1f820 (diff) |
vk/0.130: Bump header version to 0.130vulkan-header-0.130.0
All APIs have been updated. This eliminates the diff between the
work-in-progress header and the 0.130 header.
-rw-r--r-- | include/vulkan/vulkan.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/include/vulkan/vulkan.h b/include/vulkan/vulkan.h index 805e03680e7..75ae36766a6 100644 --- a/include/vulkan/vulkan.h +++ b/include/vulkan/vulkan.h @@ -28,14 +28,21 @@ extern "C" { ** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. */ +/* +** This header is generated from the Khronos Vulkan XML API Registry. +** +** Generated on date 20150620 +*/ + +#define VK_VERSION_1_0 1 #include "vk_platform.h" #define VK_MAKE_VERSION(major, minor, patch) \ ((major << 22) | (minor << 12) | patch) // Vulkan API version supported by this file -#define VK_API_VERSION VK_MAKE_VERSION(0, 90, 0) +#define VK_API_VERSION VK_MAKE_VERSION(0, 130, 0) #if defined (__cplusplus) && (VK_UINTPTRLEAST64_MAX == UINTPTR_MAX) #define VK_TYPE_SAFE_COMPATIBLE_HANDLES 1 |