Merge "Add Overlay mode to the PorterDuff list of supported modes."

This commit is contained in:
Romain Guy
2010-04-02 16:03:47 -07:00
committed by Android (Google) Code Review

View File

@@ -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;