summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/filtershow/presets/ImagePresetBWRed.java
blob: 7b9f0e1417c17e8c36e8e40ab7f0969b6bf64174 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

package com.android.gallery3d.filtershow.presets;

import com.android.gallery3d.filtershow.filters.ImageFilterBWRed;

public class ImagePresetBWRed extends ImagePreset {

    public String name() {
        return "Black & White (Red)";
    }

    public void setup() {
        mFilters.add(new ImageFilterBWRed());
    }

}