BlendOperation
public final class BlendOperation
Defines the operation to perform when blending color values.
Summary
Constants |
|
|---|---|
static final int |
Add = 1The result is the sum of the source and destination. |
static final int |
Max = 5The result is the maximum of the source and destination. |
static final int |
Min = 4The result is the minimum of the source and destination. |
static final int |
ReverseSubtract = 3The result is the source subtracted from the destination. |
static final int |
Subtract = 2The result is the destination subtracted from the source. |
static final int |
Undefined = 0Indicates that no blend operation is specified. |
Constants
ReverseSubtract
public static final int ReverseSubtract = 3
The result is the source subtracted from the destination.
Subtract
public static final int Subtract = 2
The result is the destination subtracted from the source.