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