From 5574592f9eae5d70da89bfe9a7ea0dee0d86f36f Mon Sep 17 00:00:00 2001 From: Cody Northrop Date: Tue, 25 Aug 2015 15:26:38 -0600 Subject: v155: Bug 14435 - Remove abbreviations in VkClearColor --- include/vulkan.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'include/vulkan.h') diff --git a/include/vulkan.h b/include/vulkan.h index 010123dd..b032bf7f 100644 --- a/include/vulkan.h +++ b/include/vulkan.h @@ -41,7 +41,7 @@ extern "C" { ((major << 22) | (minor << 12) | patch) // Vulkan API version supported by this file -#define VK_API_VERSION VK_MAKE_VERSION(0, 154, 0) +#define VK_API_VERSION VK_MAKE_VERSION(0, 155, 0) #if defined(__cplusplus) && (_MSC_VER >= 1800 || __cplusplus >= 201103L) @@ -2013,9 +2013,9 @@ typedef struct { } VkBufferImageCopy; typedef union { - float f32[4]; - int32_t s32[4]; - uint32_t u32[4]; + float float32[4]; + int32_t int32[4]; + uint32_t uint32[4]; } VkClearColorValue; typedef struct { @@ -2038,7 +2038,7 @@ typedef struct { typedef union { VkClearColorValue color; - VkClearDepthStencilValue ds; + VkClearDepthStencilValue depthStencil; } VkClearValue; typedef struct { -- cgit v1.2.3