aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCody Northrop <cody@lunarg.com>2015-08-25 15:26:38 -0600
committerCody Northrop <cody@lunarg.com>2015-08-26 09:59:59 -0600
commit5574592f9eae5d70da89bfe9a7ea0dee0d86f36f (patch)
treea009a8714246ca3b009cac2063e6c8119bda0411 /include
parenta9e2194cf4a89a3115cc7c9522597531ab17df75 (diff)
downloadusermoji-5574592f9eae5d70da89bfe9a7ea0dee0d86f36f.tar.xz
v155: Bug 14435 - Remove abbreviations in VkClearColor
Diffstat (limited to 'include')
-rw-r--r--include/vulkan.h10
1 files changed, 5 insertions, 5 deletions
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 {