aboutsummaryrefslogtreecommitdiff
path: root/demos/cube.c
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 /demos/cube.c
parent945bb83299e3a706289a116368e85631787cca79 (diff)
downloadusermoji-372bbaeef708f35e07e269bda7292285a89f2bf0.tar.xz
v144: Bug 14292 - Rename VkRenderPassBeginInfo::attachmentCount to clearValueCount
Diffstat (limited to 'demos/cube.c')
-rw-r--r--demos/cube.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/cube.c b/demos/cube.c
index bb07c186..e64bf0a7 100644
--- a/demos/cube.c
+++ b/demos/cube.c
@@ -515,8 +515,8 @@ static void demo_draw_build_cmd(struct demo *demo, VkCmdBuffer cmd_buf)
.renderArea.offset.y = 0,
.renderArea.extent.width = demo->width,
.renderArea.extent.height = demo->height,
- .attachmentCount = 2,
- .pAttachmentClearValues = clear_values,
+ .clearValueCount = 2,
+ .pClearValues = clear_values,
};
VkResult U_ASSERT_ONLY err;