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 8f96c4e commit eae6ef0Copy full SHA for eae6ef0
1 file changed
03_Drawing_a_triangle/02_Graphics_pipeline_basics/04_Conclusion.md
@@ -50,7 +50,11 @@ pipelineInfo.subpass = 0;
50
```
51
52
And finally we have the reference to the render pass and the index of the sub
53
-pass where this graphics pipeline will be used.
+pass where this graphics pipeline will be used. It is also possible to use other
54
+render passes with this pipeline instead of this specific instance, but they
55
+have to be *compatible* with `renderPass`. The requirements for compatibility
56
+are described [here](https://www.khronos.org/registry/vulkan/specs/1.0/html/vkspec.html#renderpass-compatibility),
57
+but we won't be using that feature in this tutorial.
58
59
```c++
60
pipelineInfo.basePipelineHandle = VK_NULL_HANDLE; // Optional
0 commit comments