summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/filtershow/filters/ImageFilter.java
diff options
context:
space:
mode:
authornicolasroard <nicolasroard@google.com>2013-02-08 18:13:24 -0800
committernicolasroard <nicolasroard@google.com>2013-02-08 18:13:24 -0800
commitcef6ad5d4a60a6e2960f7f72de624d5e60b3908a (patch)
treed8c1c2b0410fd12e18745168fa6e994232e40123 /src/com/android/gallery3d/filtershow/filters/ImageFilter.java
parent50ffa17594ab620b62db0cbb98d0b3a0fb4ac4fc (diff)
downloadandroid_packages_apps_Gallery2-cef6ad5d4a60a6e2960f7f72de624d5e60b3908a.tar.gz
android_packages_apps_Gallery2-cef6ad5d4a60a6e2960f7f72de624d5e60b3908a.tar.bz2
android_packages_apps_Gallery2-cef6ad5d4a60a6e2960f7f72de624d5e60b3908a.zip
Move filter type to representations
Change-Id: I2d49447c57f4ff49001d27cdfa6482ca320c7a8b
Diffstat (limited to 'src/com/android/gallery3d/filtershow/filters/ImageFilter.java')
-rw-r--r--src/com/android/gallery3d/filtershow/filters/ImageFilter.java15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/com/android/gallery3d/filtershow/filters/ImageFilter.java b/src/com/android/gallery3d/filtershow/filters/ImageFilter.java
index 5039da739..9ee62417e 100644
--- a/src/com/android/gallery3d/filtershow/filters/ImageFilter.java
+++ b/src/com/android/gallery3d/filtershow/filters/ImageFilter.java
@@ -28,21 +28,6 @@ public class ImageFilter implements Cloneable {
protected String mName = "Original";
private final String LOGTAG = "ImageFilter";
- public static final byte TYPE_BORDER = 1;
- public static final byte TYPE_FX = 2;
- public static final byte TYPE_WBALANCE = 3;
- public static final byte TYPE_VIGNETTE = 4;
- public static final byte TYPE_NORMAL = 5;
- public static final byte TYPE_TINYPLANET = 6;
- private byte filterType = TYPE_NORMAL;
-
- public byte getFilterType() {
- return filterType;
- }
-
- protected void setFilterType(byte type) {
- filterType = type;
- }
public int getButtonId() {
return 0;