Home | History | Annotate | Download | only in filters

Lines Matching refs:bitmap

19 import android.graphics.Bitmap;
50 native protected void nativeApplyFilter(Bitmap bitmap, int w, int h, short[] matrix);
59 public Bitmap apply(Bitmap bitmap, float scaleFactor, int quality) {
60 int w = bitmap.getWidth();
61 int h = bitmap.getHeight();
74 nativeApplyFilter(bitmap, w, h, rect);
77 return bitmap;