ShaderStage

Edit

Different shader stages. Graphics shaders have a vertex and fragment stage, and compute shaders have a single compute stage.

ValueDescription
vertex The vertex stage, which computes transformed vertex positions.
fragment The fragment stage, which computes pixel colors.
compute The compute stage, which performs arbitrary computation.

See also