summaryrefslogtreecommitdiffstats
path: root/src_pd/com/android/gallery3d/filtershow
diff options
context:
space:
mode:
authorJohn Hoford <hoford@google.com>2013-02-08 17:30:53 -0800
committerJohn Hoford <hoford@google.com>2013-02-11 16:19:55 -0800
commit3e926284099152f14a78910c744d462d13a044e5 (patch)
treeef0063fbb3225d8ae6621c75e8998060bf44e5e5 /src_pd/com/android/gallery3d/filtershow
parent83eeb942e8eda7da94303eb1c105164c253cdbba (diff)
downloadandroid_packages_apps_Snap-3e926284099152f14a78910c744d462d13a044e5.tar.gz
android_packages_apps_Snap-3e926284099152f14a78910c744d462d13a044e5.tar.bz2
android_packages_apps_Snap-3e926284099152f14a78910c744d462d13a044e5.zip
fix red eye to use the new system
Change-Id: If79106dc3144cce374afd410f5f859692e564b83
Diffstat (limited to 'src_pd/com/android/gallery3d/filtershow')
-rw-r--r--src_pd/com/android/gallery3d/filtershow/filters/FiltersManager.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src_pd/com/android/gallery3d/filtershow/filters/FiltersManager.java b/src_pd/com/android/gallery3d/filtershow/filters/FiltersManager.java
index 5ddabe29f..446d96d4f 100644
--- a/src_pd/com/android/gallery3d/filtershow/filters/FiltersManager.java
+++ b/src_pd/com/android/gallery3d/filtershow/filters/FiltersManager.java
@@ -67,6 +67,7 @@ public class FiltersManager {
public static void addFilterRepresentations(Vector<FilterRepresentation> representations) {
representations.add(getRepresentation(ImageFilterTinyPlanet.class));
+ representations.add(getRepresentation(ImageFilterRedEye.class));
representations.add(getRepresentation(ImageFilterWBalance.class));
representations.add(getRepresentation(ImageFilterExposure.class));
representations.add(getRepresentation(ImageFilterVignette.class));
@@ -86,6 +87,7 @@ public class FiltersManager {
public static void addFilters(Vector<ImageFilter> filters) {
filters.add(new ImageFilterTinyPlanet());
+ filters.add(new ImageFilterRedEye());
filters.add(new ImageFilterWBalance());
filters.add(new ImageFilterExposure());
filters.add(new ImageFilterVignette());