Enum BlendOperation
Represents blend operations used to combine pixel components in blending operations
public enum BlendOperation
Fields
Add = 1Additive blending
dst + srcSupported by all renderers.
Maximum = 5Maximum blending
max(dst, src)Supported by Direct3D, OpenGL, OpenGLES, and Vulkan.
Minimum = 4Minimum blending
min(dst, src)Supported by Direct3D, OpenGL, OpenGLES, and Vulkan.
ReverseSubtract = 3Reverse subtractive blending
dst - srcSupported by Direct3D, OpenGL, OpenGLES, and Vulkan.
Subtract = 2Subtractive blending
src - dstSupported by Direct3D, OpenGL, OpenGLES, and Vulkan.