summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/filtershow/filters/ImageFilterBWBlue.java
blob: 685b8ff7ad2bdc7a0b29d85a9ed3cbfbf7fc55f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

package com.android.gallery3d.filtershow.filters;

import android.graphics.Bitmap;

public class ImageFilterBWBlue extends ImageFilter {

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

    public ImageFilter copy() {
        return new ImageFilterBWBlue();
    }

    native protected void nativeApplyFilter(Bitmap bitmap, int w, int h);

    public void apply(Bitmap bitmap) {
        int w = bitmap.getWidth();
        int h = bitmap.getHeight();
        nativeApplyFilter(bitmap, w, h);
    }

}