summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/filtershow/editors
diff options
context:
space:
mode:
authorJohn Hoford <hoford@google.com>2013-04-10 14:58:05 -0700
committerJohn Hoford <hoford@google.com>2013-04-15 11:41:25 -0700
commitcb482deecb95a140b63d4bd43e2560fb9033df86 (patch)
treeebe309eea718401f07f988984798b1b12e327013 /src/com/android/gallery3d/filtershow/editors
parentd02932454e58d6858ec80d64932247f73dd0b19b (diff)
downloadandroid_packages_apps_Snap-cb482deecb95a140b63d4bd43e2560fb9033df86.tar.gz
android_packages_apps_Snap-cb482deecb95a140b63d4bd43e2560fb9033df86.tar.bz2
android_packages_apps_Snap-cb482deecb95a140b63d4bd43e2560fb9033df86.zip
support for simplified parameters in filter
Change-Id: I623e6fb90e8175c7e5e2dfc146f927eecba29817
Diffstat (limited to 'src/com/android/gallery3d/filtershow/editors')
-rw-r--r--src/com/android/gallery3d/filtershow/editors/BasicEditor.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/com/android/gallery3d/filtershow/editors/BasicEditor.java b/src/com/android/gallery3d/filtershow/editors/BasicEditor.java
index d9e97242f..987b499bf 100644
--- a/src/com/android/gallery3d/filtershow/editors/BasicEditor.java
+++ b/src/com/android/gallery3d/filtershow/editors/BasicEditor.java
@@ -20,6 +20,8 @@ import android.content.Context;
import com.android.gallery3d.R;
import com.android.gallery3d.filtershow.controller.Control;
+import com.android.gallery3d.filtershow.controller.FilterView;
+import com.android.gallery3d.filtershow.controller.Parameter;
import com.android.gallery3d.filtershow.controller.ParameterInteger;
import com.android.gallery3d.filtershow.filters.FilterBasicRepresentation;
import com.android.gallery3d.filtershow.filters.FilterRepresentation;
@@ -126,4 +128,13 @@ public class BasicEditor extends ParametricEditor implements ParameterInteger {
public void setController(Control c) {
}
+ @Override
+ public void setFilterView(FilterView editor) {
+
+ }
+
+ @Override
+ public void copyFrom(Parameter src) {
+
+ }
}