rename vkPlatform.h -> vk_platform.h
diff --git a/icd/common/icd.h b/icd/common/icd.h
index a23b4d0..2f6bd77 100644
--- a/icd/common/icd.h
+++ b/icd/common/icd.h
@@ -29,7 +29,7 @@
#define ICD_H
#include <vulkan.h>
-#include <vkPlatform.h>
+#include <vk_platform.h>
#include <vkDbg.h>
#if defined(PLATFORM_LINUX)
diff --git a/include/vkIcd.h b/include/vkIcd.h
index b7916a8..3ecd988 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
similarity index 96%
rename from include/vkPlatform.h
rename to include/vk_platform.h
index 526a1de..fc73dd1 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 @@
} // extern "C"
#endif // __cplusplus
-#endif // __VKPLATFORM_H__
+#endif // __VK_PLATFORM_H__
diff --git a/include/vulkan.h b/include/vulkan.h
index b1bdac1..b3527c0 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"