Enum BlendValue
- Namespace
- ShadowDusk.Core
- Assembly
- ShadowDusk.Core.dll
A blend factor applied to a source or destination color (mirrors MonoGame's Blend ordinals).
public enum BlendValue
Fields
BlendFactor = 10Factor of the constant blend factor.
DestinationAlpha = 8Factor of the destination alpha.
DestinationColor = 6Factor of the destination color.
InverseBlendFactor = 11Factor of one minus the constant blend factor.
InverseDestinationAlpha = 9Factor of one minus the destination alpha.
InverseDestinationColor = 7Factor of one minus the destination color.
InverseSourceAlpha = 5Factor of one minus the source alpha.
InverseSourceColor = 3Factor of one minus the source color.
One = 0Factor of (1, 1, 1, 1).
SourceAlpha = 4Factor of the source alpha.
SourceAlphaSaturation = 12Factor of the source alpha, saturated to [0, 1].
SourceColor = 2Factor of the source color.
Zero = 1Factor of (0, 0, 0, 0).