BlendFunction Enum
Namespace: Stride.GraphicsAssembly: Stride.Graphics.dll
RGB or alpha blending operation.
[DataContract]
public enum BlendFunction
Remarks
The runtime implements RGB blending and alpha blending separately. Therefore, blend state requires separate blend operations for RGB data and alpha data. These blend operations are specified in a
Fields
Name | Description |
---|---|
Add | Add source 1 and source 2. |
Max | Find the maximum of source 1 and source 2. |
Min | Find the minimum of source 1 and source 2. |
ReverseSubtract | Subtract source 2 from source 1. |
Subtract | Subtract source 1 from source 2. |