aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCody Northrop <cody@lunarg.com>2015-08-04 11:51:03 -0600
committerCody Northrop <cody@lunarg.com>2015-08-04 17:37:03 -0600
commit372bbaeef708f35e07e269bda7292285a89f2bf0 (patch)
tree9b2161f3551eca947152362bea53420788adc02d /include
parent945bb83299e3a706289a116368e85631787cca79 (diff)
downloadusermoji-372bbaeef708f35e07e269bda7292285a89f2bf0.tar.xz
v144: Bug 14292 - Rename VkRenderPassBeginInfo::attachmentCount to clearValueCount
Diffstat (limited to 'include')
-rw-r--r--include/vulkan.h6
1 files changed, 3 insertions, 3 deletions
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 {