summaryrefslogtreecommitdiffstats
path: root/include/vulkan
diff options
context:
space:
mode:
authorChad Versace <[email protected]>2015-10-04 09:26:25 -0700
committerChad Versace <[email protected]>2015-10-04 09:26:25 -0700
commit8cb2e27c62ab958f028eb2887b84a17e95ffe8ec (patch)
treef2ccb040a2f31cfbc38986f9e124ff4305d4873b /include/vulkan
parent3694518be5817b411263c049befb85f0e882911d (diff)
vk/0.170.2: Update VkRenderPassBeginInfo
Rename members: attachmentCount -> clearValueCount pAttachmentClearValues -> pClearValues
Diffstat (limited to 'include/vulkan')
-rw-r--r--include/vulkan/vulkan.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vulkan/vulkan.h b/include/vulkan/vulkan.h
index 6b8ca6022ee..16ed3f8dd67 100644
--- a/include/vulkan/vulkan.h
+++ b/include/vulkan/vulkan.h
@@ -2020,8 +2020,8 @@ typedef struct {
VkRenderPass renderPass;
VkFramebuffer framebuffer;
VkRect2D renderArea;
- uint32_t attachmentCount;
- const VkClearValue* pAttachmentClearValues;
+ uint32_t clearValueCount;
+ const VkClearValue* pClearValues;
} VkRenderPassBeginInfo;
typedef struct {