Click or drag to resize
Ab4d.SharpEngine logo

PipelineStageFlags Enumeration


Namespace: Ab4d.Vulkan
Assembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 1.0.8740+deb2991acfe86a95cca780cd4f82bcae2805c1a5
Syntax
C#
[FlagsAttribute]
public enum PipelineStageFlags
Members
Member nameValueDescription
None0 
TopOfPipe1Before subsequent commands are processed
DrawIndirect2Draw/DispatchIndirect command fetch
VertexInput4Vertex/index fetch
VertexShader8Vertex shading
TessellationControlShader16Tessellation control shading
TessellationEvaluationShader32Tessellation evaluation shading
GeometryShader64Geometry shading
FragmentShader128Fragment shading
EarlyFragmentTests256Early fragment (depth and stencil) tests
LateFragmentTests512Late fragment (depth and stencil) tests
ColorAttachmentOutput1,024Color attachment writes
ComputeShader2,048Compute shading
Transfer4,096Transfer/copy operations
BottomOfPipe8,192After previous commands have completed
Host16,384Indicates host (CPU) is a source/sink of the dependency
AllGraphics32,768All stages of the graphics pipeline
AllCommands65,536All stages supported on the queue
See Also