summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/filtershow/FilterShowActivity.java
diff options
context:
space:
mode:
authorJohn Hoford <hoford@google.com>2013-07-19 17:11:31 -0700
committerJohn Hoford <hoford@google.com>2013-07-29 17:21:34 -0700
commit52e9277b6774bc938a9e55694640c20e4ba90365 (patch)
treeda8abe57ccc4c2040b9989739b926ccf0544c8c9 /src/com/android/gallery3d/filtershow/FilterShowActivity.java
parenta5c138bdac37dddf53acd37807a364aac753acb6 (diff)
downloadandroid_packages_apps_Snap-52e9277b6774bc938a9e55694640c20e4ba90365.tar.gz
android_packages_apps_Snap-52e9277b6774bc938a9e55694640c20e4ba90365.tar.bz2
android_packages_apps_Snap-52e9277b6774bc938a9e55694640c20e4ba90365.zip
add Grad filter
Change-Id: I30fc0810c54f3daa31726188a4c3762df33953a7
Diffstat (limited to 'src/com/android/gallery3d/filtershow/FilterShowActivity.java')
-rw-r--r--src/com/android/gallery3d/filtershow/FilterShowActivity.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/com/android/gallery3d/filtershow/FilterShowActivity.java b/src/com/android/gallery3d/filtershow/FilterShowActivity.java
index 7929e252d..d822553ce 100644
--- a/src/com/android/gallery3d/filtershow/FilterShowActivity.java
+++ b/src/com/android/gallery3d/filtershow/FilterShowActivity.java
@@ -58,6 +58,7 @@ import android.widget.Toast;
import com.android.gallery3d.R;
import com.android.gallery3d.app.PhotoPage;
import com.android.gallery3d.data.LocalAlbum;
+import com.android.gallery3d.filtershow.editors.EditorGrad;
import com.android.gallery3d.filtershow.pipeline.CachingPipeline;
import com.android.gallery3d.filtershow.cache.ImageLoader;
import com.android.gallery3d.filtershow.category.Action;
@@ -376,6 +377,7 @@ public class FilterShowActivity extends FragmentActivity implements OnItemClickL
}
private void fillEditors() {
+ mEditorPlaceHolder.addEditor(new EditorGrad());
mEditorPlaceHolder.addEditor(new EditorDraw());
mEditorPlaceHolder.addEditor(new BasicEditor());
mEditorPlaceHolder.addEditor(new ImageOnlyEditor());