From 117641ebfb859566dba287ad97160761755868a4 Mon Sep 17 00:00:00 2001 From: YuTArrUsO Date: Sun, 2 Aug 2020 16:21:57 +0800 Subject: [PATCH] fix typo line 751, ttachment -> attachment, transitionss -> transitions --- examples/triangle/triangle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/triangle/triangle.cpp b/examples/triangle/triangle.cpp index 2c42cb70..95852026 100644 --- a/examples/triangle/triangle.cpp +++ b/examples/triangle/triangle.cpp @@ -748,7 +748,7 @@ public: subpassDescription.pResolveAttachments = nullptr; // Resolve attachments are resolved at the end of a sub pass and can be used for e.g. multi sampling // Setup subpass dependencies - // These will add the implicit ttachment layout transitionss specified by the attachment descriptions + // These will add the implicit attachment layout transitions specified by the attachment descriptions // The actual usage layout is preserved through the layout specified in the attachment reference // Each subpass dependency will introduce a memory and execution dependency between the source and dest subpass described by // srcStageMask, dstStageMask, srcAccessMask, dstAccessMask (and dependencyFlags is set)