Home | History | Annotate | Download | only in filters

Lines Matching refs:bitmap

22 import android.graphics.Bitmap;
49 native protected void nativeApplyFilter(Bitmap bitmap, int w, int h, int locX, int locY);
52 public Bitmap apply(Bitmap bitmap, float scaleFactor, int quality) {
53 int w = bitmap.getWidth();
54 int h = bitmap.getHeight();
55 nativeApplyFilter(bitmap, w, h, -1, -1);
56 return bitmap;