Enum ShaderStages
- Namespace
- NeoVeldrid
- Assembly
- NeoVeldrid.dll
A bitmask representing a set of shader stages.
[Flags]
public enum ShaderStages : byte
Fields
Compute = 32The compute shader stage.
Fragment = 16The fragment (or pixel) shader stage.
Geometry = 2The geometry shader stage.
None = 0No stages.
TessellationControl = 4The tessellation control (or hull) shader stage.
TessellationEvaluation = 8The tessellation evaluation (or domain) shader stage.
Vertex = 1The vertex shader stage.