Enum BlendOperation
RGB or alpha blending operation.
Namespace: Evergine.Common.Graphics
Assembly: Evergine.Common.dll
Syntax
public enum BlendOperation : byte
Fields
Name | Description |
---|---|
Add | Adds source 1 and source 2. |
Max | Finds the maximum of source 1 and source 2. |
Min | Finds the minimum of source 1 and source 2. |
ReverseSubstract | Subtracts source 2 from source 1. |
Substract | Subtracts source 1 from source 2. |