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

package com.android.gallery3d.filtershow.filters;

import android.graphics.Bitmap;

public class ImageFilterBWBlue extends ImageFilter {

    public ImageFilterBWBlue() {
        mName = "Black & White (Blue)";
    }

    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);
    }

}