public final class SKBlendMode
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
static long |
Add
Blends the source and destination colors by adding them up.
|
static long |
Alpha
Blends the source and destination colors by multiplying the source alpha value.
|
static long |
Multiply
Blends the source and destination colors by multiplying them.
|
static long |
MultiplyAlpha
Blends the source and destination colors by multiplying them (with alpha).
|
static long |
MultiplyX2
Blends the source and destination colors by multiplying them and doubling the result.
|
static long |
Replace
Replaces the destination with the source (ignores alpha).
|
static long |
Screen
Blends the source and destination colors by multiplying one minus the source with the destination and adding the source.
|
static long |
Subtract
Blends the source and destination colors by subtracting the source from the destination.
|
public static final long Alpha
public static final long Add
public static final long Subtract
public static final long Multiply
public static final long MultiplyX2
public static final long Screen
public static final long Replace
public static final long MultiplyAlpha