diff options
author | Derek Sollenberger <djsollen@google.com> | 2013-01-18 14:33:50 -0500 |
---|---|---|
committer | Derek Sollenberger <djsollen@google.com> | 2013-01-18 14:33:50 -0500 |
commit | 70336dd0eb4d06004687bfdeda0047b5675433e3 (patch) | |
tree | d2d6008872b184ae67c0428b2f6f792bfadee0f6 /graphics/java | |
parent | 6b000be49f7207c4feae2f67d3f62ca34c16406d (diff) | |
download | frameworks_base-70336dd0eb4d06004687bfdeda0047b5675433e3.zip frameworks_base-70336dd0eb4d06004687bfdeda0047b5675433e3.tar.gz frameworks_base-70336dd0eb4d06004687bfdeda0047b5675433e3.tar.bz2 |
Update enum value to match those in the native header.
Change-Id: Idfb921ecd138baa8570ac1e92bdeb291dbf9207e
Diffstat (limited to 'graphics/java')
-rw-r--r-- | graphics/java/android/graphics/Path.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/java/android/graphics/Path.java b/graphics/java/android/graphics/Path.java index f6b5ffc..157c7d1 100644 --- a/graphics/java/android/graphics/Path.java +++ b/graphics/java/android/graphics/Path.java @@ -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; |