summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/filtershow/filters/FilterRedEyeRepresentation.java
diff options
context:
space:
mode:
authorJohn Hoford <hoford@google.com>2013-07-15 17:44:31 -0700
committerJohn Hoford <hoford@google.com>2013-07-17 18:28:31 +0000
commit4264520a6a231d42f65168b07e7e793cda7b1a8d (patch)
treee240fdfbaf86ed80297189b6923a0c708c6dd21e /src/com/android/gallery3d/filtershow/filters/FilterRedEyeRepresentation.java
parent9b799fa7ccb6c5c926d13c7265af621b9eca3b33 (diff)
downloadandroid_packages_apps_Snap-4264520a6a231d42f65168b07e7e793cda7b1a8d.tar.gz
android_packages_apps_Snap-4264520a6a231d42f65168b07e7e793cda7b1a8d.tar.bz2
android_packages_apps_Snap-4264520a6a231d42f65168b07e7e793cda7b1a8d.zip
remove clone
Change-Id: Ia9f4c1778e06416018eeb07be657bcdd0af1496b
Diffstat (limited to 'src/com/android/gallery3d/filtershow/filters/FilterRedEyeRepresentation.java')
-rw-r--r--src/com/android/gallery3d/filtershow/filters/FilterRedEyeRepresentation.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/com/android/gallery3d/filtershow/filters/FilterRedEyeRepresentation.java b/src/com/android/gallery3d/filtershow/filters/FilterRedEyeRepresentation.java
index 8a878415c..dd06a9760 100644
--- a/src/com/android/gallery3d/filtershow/filters/FilterRedEyeRepresentation.java
+++ b/src/com/android/gallery3d/filtershow/filters/FilterRedEyeRepresentation.java
@@ -34,6 +34,19 @@ public class FilterRedEyeRepresentation extends FilterPointRepresentation {
setOverlayOnly(true);
}
+ @Override
+ public FilterRepresentation copy() {
+ FilterRedEyeRepresentation representation = new FilterRedEyeRepresentation();
+ copyAllParameters(representation);
+ return representation;
+ }
+
+ @Override
+ protected void copyAllParameters(FilterRepresentation representation) {
+ super.copyAllParameters(representation);
+ representation.useParametersFrom(this);
+ }
+
public void addRect(RectF rect, RectF bounds) {
Vector<RedEyeCandidate> intersects = new Vector<RedEyeCandidate>();
for (int i = 0; i < getCandidates().size(); i++) {