Home | History | Annotate | Download | only in filters

Lines Matching refs:bitmap

19 import android.graphics.Bitmap;
39 native protected void nativeApplyFilter(Bitmap bitmap, int w, int h, float p);
42 public Bitmap apply(Bitmap bitmap, float scaleFactor, int quality) {
44 return bitmap;
46 int w = bitmap.getWidth();
47 int h = bitmap.getHeight();
50 nativeApplyFilter(bitmap, w, h, p);
51 return bitmap;