From 372bbaeef708f35e07e269bda7292285a89f2bf0 Mon Sep 17 00:00:00 2001 From: Cody Northrop Date: Tue, 4 Aug 2015 11:51:03 -0600 Subject: v144: Bug 14292 - Rename VkRenderPassBeginInfo::attachmentCount to clearValueCount --- include/vulkan.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include') diff --git a/include/vulkan.h b/include/vulkan.h index bb70391b..e74a99fb 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, 143, 0) +#define VK_API_VERSION VK_MAKE_VERSION(0, 144, 0) #define VK_DEFINE_HANDLE(obj) typedef struct obj##_T* obj; @@ -2016,8 +2016,8 @@ typedef struct { VkRenderPass renderPass; VkFramebuffer framebuffer; VkRect2D renderArea; - uint32_t attachmentCount; - const VkClearValue* pAttachmentClearValues; + uint32_t clearValueCount; + const VkClearValue* pClearValues; } VkRenderPassBeginInfo; typedef struct { -- cgit v1.2.3