Enum BlendFunction
- Namespace
- NeoVeldrid
- Assembly
- NeoVeldrid.dll
Controls how the source and destination factors are combined in a blend operation.
public enum BlendFunction : byte
Fields
Add = 0Source and destination are added.
Maximum = 4The maximum of source and destination is selected.
Minimum = 3The minimum of source and destination is selected.
ReverseSubtract = 2Source is subtracted from destination.
Subtract = 1Destination is subtracted from source.