mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-26 22:31:05 +00:00
[vulkan] Correct some plist errors in the renderpass
Typos and incorrect attachment array reference.
This commit is contained in:
parent
f4c8d341e1
commit
91ff15ca7c
1 changed files with 4 additions and 4 deletions
|
@ -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 = ();
|
||||
|
|
Loading…
Reference in a new issue