[vulkan] Correct some plist errors in the renderpass

Typos and incorrect attachment array reference.
This commit is contained in:
Bill Currie 2020-07-17 00:33:00 +09:00
parent f4c8d341e1
commit 91ff15ca7c

View file

@ -37,20 +37,20 @@
);
subpasses = (
{
inputAttachments = (
colorAttachments = (
{
attachmeht = 0;
attachment = 0;
layout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL;
}
);
resolveAttachments = (
{
attachmeht = 2;
attachment = 2;
layout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL;
}
);
depthStencilAttachment = {
attachmeht = 1;
attachment = 1;
layout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL;
};
preserveAttachments = ();