aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCourtney Goeltzenleuchter <courtney@LunarG.com>2015-04-09 11:52:55 -0600
committerChia-I Wu <olv@lunarg.com>2015-04-16 17:48:18 +0800
commitd4c644c4b8ed11aabb66e5ac4ed2d5dabf90cdc0 (patch)
treef60fd5f9a16b8f6218022ebb5c8ec17f33292ec7
parente1416bbcd34118ea0625b8114c05baca89610c9e (diff)
downloadusermoji-d4c644c4b8ed11aabb66e5ac4ed2d5dabf90cdc0.tar.xz
rename vkPlatform.h -> vk_platform.h
-rw-r--r--icd/common/icd.h2
-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
4 files changed, 8 insertions, 8 deletions
diff --git a/icd/common/icd.h b/icd/common/icd.h
index a23b4d07..2f6bd77b 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 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"