Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 436e40de authored by Lei Yu's avatar Lei Yu Committed by Android (Google) Code Review
Browse files

Merge "Remove circular dependency in BlendMode.java"

parents 617e1745 846af9ca
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@ import android.annotation.UnsupportedAppUsage;
 * objects drawn with that paint have the xfermode applied.
 */
public class Xfermode {
    static final int DEFAULT = BlendMode.SRC_OVER.getXfermode().porterDuffMode;
    static final int DEFAULT = PorterDuff.Mode.SRC_OVER.nativeInt;
    @UnsupportedAppUsage
    int porterDuffMode = DEFAULT;
}