mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-01 06:50:59 +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 = (
|
subpasses = (
|
||||||
{
|
{
|
||||||
inputAttachments = (
|
colorAttachments = (
|
||||||
{
|
{
|
||||||
attachmeht = 0;
|
attachment = 0;
|
||||||
layout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL;
|
layout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL;
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
resolveAttachments = (
|
resolveAttachments = (
|
||||||
{
|
{
|
||||||
attachmeht = 2;
|
attachment = 2;
|
||||||
layout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL;
|
layout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL;
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
depthStencilAttachment = {
|
depthStencilAttachment = {
|
||||||
attachmeht = 1;
|
attachment = 1;
|
||||||
layout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL;
|
layout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL;
|
||||||
};
|
};
|
||||||
preserveAttachments = ();
|
preserveAttachments = ();
|
||||||
|
|
Loading…
Reference in a new issue