Enum BlendFunction
Controls how the source and destination factors are combined in a blend operation.
Namespace: Veldrid
Assembly: cs.temp.dll.dll
Syntax
public enum BlendFunction : byte
Fields
| Name | Description |
|---|---|
| Add | Source and destination are added. |
| Maximum | The maximum of source and destination is selected. |
| Minimum | The minimum of source and destination is selected. |
| ReverseSubtract | Source is subtracted from destination. |
| Subtract | Destination is subtracted from source. |