diff options
author | Jason Ekstrand <[email protected]> | 2015-10-06 10:07:47 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-10-06 10:07:47 -0700 |
commit | bd4cde708a2ad0bea04eb318d7c54447ccbbc7af (patch) | |
tree | d096dd51da5697570de93f72dbd9c4f228f730ff /include | |
parent | 81c7fa877274b5767657497699f1d46981784fc9 (diff) |
vk/0.170.2: Rename fields in VkClearColorValue
Diffstat (limited to 'include')
-rw-r--r-- | include/vulkan/vulkan.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/vulkan/vulkan.h b/include/vulkan/vulkan.h index cec176f3bf9..2c448b54f38 100644 --- a/include/vulkan/vulkan.h +++ b/include/vulkan/vulkan.h @@ -1982,9 +1982,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 { |