OSDN Git Service

vulkan: Bump the header to 1.0.3
authorJason Ekstrand <jason.ekstrand@intel.com>
Tue, 2 Feb 2016 21:08:47 +0000 (13:08 -0800)
committerJason Ekstrand <jason.ekstrand@intel.com>
Tue, 2 Feb 2016 21:08:47 +0000 (13:08 -0800)
include/vulkan/vulkan.h

index 9940f85..f5610c5 100644 (file)
@@ -38,11 +38,14 @@ extern "C" {
 #include "vk_platform.h"
 
 #define VK_MAKE_VERSION(major, minor, patch) \
-    ((major << 22) | (minor << 12) | patch)
+    (((major) << 22) | ((minor) << 12) | (patch))
 
 // Vulkan API version supported by this file
-#define VK_API_VERSION VK_MAKE_VERSION(1, 0, 2)
+#define VK_API_VERSION VK_MAKE_VERSION(1, 0, 3)
 
+#define VK_VERSION_MAJOR(version) ((uint32_t)(version) >> 22)
+#define VK_VERSION_MINOR(version) (((uint32_t)(version) >> 12) & 0x3ff)
+#define VK_VERSION_PATCH(version) ((uint32_t)(version) & 0xfff)
 
 #define VK_NULL_HANDLE 0