Merge pull request #75945 from Calinou/renderingdevice-finalaction-fix-typo

Fix typo in FinalAction `switch` statement in RenderingDevice
This commit is contained in:
Rémi Verschelde 2023-05-24 08:46:01 +02:00
commit b917f748b5
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -3655,7 +3655,7 @@ VkRenderPass RenderingDeviceVulkan::_render_pass_create(const Vector<AttachmentF
} else {
description.loadOp = VK_ATTACHMENT_LOAD_OP_DONT_CARE;
description.stencilLoadOp = VK_ATTACHMENT_LOAD_OP_DONT_CARE;
description.initialLayout = VK_IMAGE_LAYOUT_UNDEFINED; // Don't care what is there.
description.finalLayout = VK_IMAGE_LAYOUT_UNDEFINED; // Don't care what is there.
// TODO: What does this mean about the next usage (and thus appropriate dependency masks.
}
} break;