rename vkPlatform.h -> vk_platform.h
authorCourtney Goeltzenleuchter <courtney@LunarG.com>
Thu, 9 Apr 2015 17:52:55 +0000 (11:52 -0600)
committerChia-I Wu <olv@lunarg.com>
Thu, 16 Apr 2015 09:48:18 +0000 (17:48 +0800)
icd/common/icd.h
include/vkIcd.h
include/vk_platform.h [moved from include/vkPlatform.h with 96% similarity]
include/vulkan.h

index a23b4d0..2f6bd77 100644 (file)
@@ -29,7 +29,7 @@
 #define ICD_H
 
 #include <vulkan.h>
-#include <vkPlatform.h>
+#include <vk_platform.h>
 #include <vkDbg.h>
 
 #if defined(PLATFORM_LINUX)
index b7916a8..3ecd988 100644 (file)
@@ -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
similarity index 96%
rename from include/vkPlatform.h
rename to include/vk_platform.h
index 526a1de..fc73dd1 100644 (file)
@@ -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__
index b1bdac1..b3527c0 100644 (file)
 #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"