aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/vkIcd.h2
-rw-r--r--include/vk_platform.h (renamed from include/vkPlatform.h)8
-rw-r--r--include/vulkan.h4
3 files changed, 7 insertions, 7 deletions
diff --git a/include/vkIcd.h b/include/vkIcd.h
index b7916a86..3ecd988b 100644
--- a/include/vkIcd.h
+++ b/include/vkIcd.h
@@ -3,7 +3,7 @@
#include <stdint.h>
#include <stdbool.h>
-#include "vkPlatform.h"
+#include "vk_platform.h"
/*
* The ICD must reserve space for a pointer for the loader's dispatch
diff --git a/include/vkPlatform.h b/include/vk_platform.h
index 526a1de8..fc73dd16 100644
--- a/include/vkPlatform.h
+++ b/include/vk_platform.h
@@ -1,5 +1,5 @@
//
-// File: vkPlatform.h
+// File: vk_platform.h
//
/*
** Copyright (c) 2014 The Khronos Group Inc.
@@ -25,8 +25,8 @@
*/
-#ifndef __VKPLATFORM_H__
-#define __VKPLATFORM_H__
+#ifndef __VK_PLATFORM_H__
+#define __VK_PLATFORM_H__
#ifdef __cplusplus
extern "C"
@@ -87,4 +87,4 @@ typedef int32_t VK_ENUM;
} // extern "C"
#endif // __cplusplus
-#endif // __VKPLATFORM_H__
+#endif // __VK_PLATFORM_H__
diff --git a/include/vulkan.h b/include/vulkan.h
index b1bdac1d..b3527c0c 100644
--- a/include/vulkan.h
+++ b/include/vulkan.h
@@ -30,10 +30,10 @@
#define VK_MAKE_VERSION(major, minor, patch) \
((major << 22) | (minor << 12) | patch)
-#include "vkPlatform.h"
+#include "vk_platform.h"
// Vulkan API version supported by this file
-#define VK_API_VERSION VK_MAKE_VERSION(0, 70, 0)
+#define VK_API_VERSION VK_MAKE_VERSION(0, 71, 0)
#ifdef __cplusplus
extern "C"