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

Commit dd1810cd authored by Derek Sollenberger's avatar Derek Sollenberger Committed by Android (Google) Code Review
Browse files

Merge "Update enum value to match those in the native header." into master-chromium

parents dc0c8a35 70336dd0
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -375,9 +375,9 @@ public class Path {
     */
    public enum Direction {
        /** clockwise */
        CW  (0),    // must match enum in SkPath.h
        CW  (1),    // must match enum in SkPath.h
        /** counter-clockwise */
        CCW (1);    // must match enum in SkPath.h
        CCW (2);    // must match enum in SkPath.h
        
        Direction(int ni) {
            nativeInt = ni;