summaryrefslogtreecommitdiffstats
path: root/src_pd
diff options
context:
space:
mode:
authorByunghun Jeon <bjeon@codeaurora.org>2015-08-03 16:50:11 -0700
committerGerrit - the friendly Code Review server <code-review@localhost>2015-10-13 04:31:27 -0700
commit8ea62fb010059f600f0e26ad468ceab6bf0c8232 (patch)
treed622960b2312d56b98b99d5747064f8a54682e90 /src_pd
parent8c969c5cf077a33082ea113f7421797ec1f89eb0 (diff)
downloadandroid_packages_apps_Gallery2-8ea62fb010059f600f0e26ad468ceab6bf0c8232.tar.gz
android_packages_apps_Gallery2-8ea62fb010059f600f0e26ad468ceab6bf0c8232.tar.bz2
android_packages_apps_Gallery2-8ea62fb010059f600f0e26ad468ceab6bf0c8232.zip
Gallery2: Add dual camera filters
Add dual camera based filters. CRs-Fixed: 892007 Change-Id: Ide26135ef8e83137f86abb96ca7ce29e94801bba
Diffstat (limited to 'src_pd')
-rw-r--r--src_pd/com/android/gallery3d/filtershow/editors/EditorManager.java9
1 files changed, 6 insertions, 3 deletions
diff --git a/src_pd/com/android/gallery3d/filtershow/editors/EditorManager.java b/src_pd/com/android/gallery3d/filtershow/editors/EditorManager.java
index e82d5617c..8c668d482 100644
--- a/src_pd/com/android/gallery3d/filtershow/editors/EditorManager.java
+++ b/src_pd/com/android/gallery3d/filtershow/editors/EditorManager.java
@@ -17,9 +17,6 @@
package com.android.gallery3d.filtershow.editors;
import com.android.gallery3d.filtershow.EditorPlaceHolder;
-import com.android.gallery3d.filtershow.editors.BasicEditor;
-import com.android.gallery3d.filtershow.editors.EditorCurves;
-import com.android.gallery3d.filtershow.editors.EditorZoom;
public class EditorManager {
@@ -36,6 +33,12 @@ public class EditorManager {
editorPlaceHolder.addEditor(new EditorRotate());
editorPlaceHolder.addEditor(new EditorStraighten());
editorPlaceHolder.addEditor(new EditorCrop());
+ editorPlaceHolder.addEditor(new BasicEditor());
+ editorPlaceHolder.addEditor(new ImageOnlyEditor());
+ editorPlaceHolder.addEditor(new EditorRedEye());
+ editorPlaceHolder.addEditor(new EditorDualCamera());
+ editorPlaceHolder.addEditor(new EditorDualCamFusion());
+ editorPlaceHolder.addEditor(new EditorDualCamSketch());
}
}