Browse Source

Vk: this might be important to mention.

pull/494/head
Vladimír Vondruš 5 years ago
parent
commit
d4f4540913
  1. 8
      src/Magnum/Vk/Pipeline.h

8
src/Magnum/Vk/Pipeline.h

@ -86,7 +86,13 @@ enum class PipelineStage: UnsignedInt {
*/ */
GeometryShader = VK_PIPELINE_STAGE_GEOMETRY_SHADER_BIT, 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, FragmentShader = VK_PIPELINE_STAGE_FRAGMENT_SHADER_BIT,
/** /**

Loading…
Cancel
Save