Merge "Add Overlay mode to the PorterDuff list of supported modes."
This commit is contained in:
@@ -53,7 +53,10 @@ public class PorterDuff {
|
||||
/** [Sa * Da, Sc * Dc] */
|
||||
MULTIPLY (14),
|
||||
/** [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] */
|
||||
SCREEN (15);
|
||||
SCREEN (15),
|
||||
/** Saturate(S + D) */
|
||||
ADD (16),
|
||||
OVERLAY (17);
|
||||
|
||||
Mode(int nativeInt) {
|
||||
this.nativeInt = nativeInt;
|
||||
|
||||
Reference in New Issue
Block a user