Enum BlendOperation
Defines the type of operation to perform while blending colors.
Namespace: Gorgon.Graphics.Core
Assembly: Gorgon.Graphics.Core.dll
Syntax
public enum BlendOperation
Fields
Name | Description |
---|---|
Add | Add source 1 and source 2. |
Maximum | Find the maximum of source 1 and source 2. |
Minimum | Find the minimum of source 1 and source 2. |
ReverseSubtract | Subtract source 2 from source 1. |
Subtract | Subtract source 1 from source 2. |