Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fac998 commit 96f8176Copy full SHA for 96f8176
1 file changed
en/03_Drawing_a_triangle/03_Drawing/02_Rendering_and_presentation.md
@@ -235,7 +235,8 @@ subpass. The special value `VK_SUBPASS_EXTERNAL` refers to the implicit subpass
235
before or after the render pass depending on whether it is specified in
236
`srcSubpass` or `dstSubpass`. The index `0` refers to our subpass, which is the
237
first and only one. The `dstSubpass` must always be higher than `srcSubpass` to
238
-prevent cycles in the dependency graph.
+prevent cycles in the dependency graph (unless one of the subpasses is
239
+`VK_SUBPASS_EXTERNAL`).
240
241
```c++
242
dependency.srcStageMask = VK_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT;
0 commit comments