summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/filtershow/filters/ImageFilterBW.java
blob: bc3dd09388cbbbafacf2be72072d49c7b184e46b (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 ImageFilterBW extends ImageFilter {

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

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

}