diff options
author | Chris Craik <ccraik@google.com> | 2012-11-16 16:09:33 -0800 |
---|---|---|
committer | Chris Craik <ccraik@google.com> | 2012-11-16 16:09:33 -0800 |
commit | fa0853e0b92617128531188edd6a749a72b86432 (patch) | |
tree | a7615a7e9eb2a8fe665b989fff35edfa57f67717 /graphics | |
parent | acddb72c58dbab029d1acbaea61755e79ef8b2a4 (diff) | |
download | frameworks_base-fa0853e0b92617128531188edd6a749a72b86432.zip frameworks_base-fa0853e0b92617128531188edd6a749a72b86432.tar.gz frameworks_base-fa0853e0b92617128531188edd6a749a72b86432.tar.bz2 |
Add missing variable copies in Path copy constructor
bug:7564602
Also, clear isSimplePath flag for possible translates, since rect drawing path
doesn't support them
Change-Id: Ibb4a3e87ace0feb16bce1c6032016c5f4643f8d6
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/java/android/graphics/Path.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/graphics/java/android/graphics/Path.java b/graphics/java/android/graphics/Path.java index b4f1e84..f6b5ffc 100644 --- a/graphics/java/android/graphics/Path.java +++ b/graphics/java/android/graphics/Path.java @@ -59,6 +59,10 @@ public class Path { int valNative = 0; if (src != null) { valNative = src.mNativePath; + isSimplePath = src.isSimplePath; + if (src.rects != null) { + rects = new Region(src.rects); + } } mNativePath = init2(valNative); mDetectSimplePaths = HardwareRenderer.isAvailable(); @@ -544,6 +548,7 @@ public class Path { int dstNative = 0; if (dst != null) { dstNative = dst.mNativePath; + dst.isSimplePath = false; } native_offset(mNativePath, dx, dy, dstNative); } @@ -555,6 +560,7 @@ public class Path { * @param dy The amount in the Y direction to offset the entire path */ public void offset(float dx, float dy) { + isSimplePath = false; native_offset(mNativePath, dx, dy); } @@ -580,6 +586,7 @@ public class Path { public void transform(Matrix matrix, Path dst) { int dstNative = 0; if (dst != null) { + dst.isSimplePath = false; dstNative = dst.mNativePath; } native_transform(mNativePath, matrix.native_instance, dstNative); @@ -591,6 +598,7 @@ public class Path { * @param matrix The matrix to apply to the path */ public void transform(Matrix matrix) { + isSimplePath = false; native_transform(mNativePath, matrix.native_instance); } |