Home | History | Annotate | Download | only in filters

Lines Matching refs:bitmap

20 import android.graphics.Bitmap;
29 private Bitmap mOverlayBitmap;
42 Bitmap bitmap, int w, int h, int cx, int cy, float radx, float rady, float strength);
59 public Bitmap apply(Bitmap bitmap, float scaleFactor, int quality) {
66 Canvas c = new Canvas(bitmap);
67 int dim = Math.max(bitmap.getWidth(), bitmap.getHeight());
70 return bitmap;
74 return bitmap;
76 int w = bitmap.getWidth();
77 int h = bitmap.getHeight();
95 nativeApplyFilter(bitmap, w, h, (int) cx, (int) cy, rx, ry, value);
96 return bitmap;