From d4c644c4b8ed11aabb66e5ac4ed2d5dabf90cdc0 Mon Sep 17 00:00:00 2001 From: Courtney Goeltzenleuchter Date: Thu, 9 Apr 2015 11:52:55 -0600 Subject: [PATCH] rename vkPlatform.h -> vk_platform.h --- icd/common/icd.h | 2 +- include/vkIcd.h | 2 +- include/{vkPlatform.h => vk_platform.h} | 8 ++++---- include/vulkan.h | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) rename include/{vkPlatform.h => vk_platform.h} (96%) 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 -#include +#include #include #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 #include -#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 @@ 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 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" -- 2.7.4