From d4f45409136a2c1ecd97a890e9ad1f31385e5ea9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sun, 24 Jan 2021 18:12:00 +0100 Subject: [PATCH] Vk: this might be important to mention. --- src/Magnum/Vk/Pipeline.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/Magnum/Vk/Pipeline.h b/src/Magnum/Vk/Pipeline.h index bdb751ef7..d9f7eee68 100644 --- a/src/Magnum/Vk/Pipeline.h +++ b/src/Magnum/Vk/Pipeline.h @@ -86,7 +86,13 @@ enum class PipelineStage: UnsignedInt { */ GeometryShader = VK_PIPELINE_STAGE_GEOMETRY_SHADER_BIT, - /** Execution of a fragment shader */ + /** + * Execution of a fragment shader. Does not include color or depth/stencil + * attachment writes, those are a separate + * @ref PipelineStage::ColorAttachmentOutput stage for color and both + * @ref PipelineStage::EarlyFragmentTests and + * @ref PipelineStage::LateFragmentTests stages for depth/stencil. + */ FragmentShader = VK_PIPELINE_STAGE_FRAGMENT_SHADER_BIT, /**