Home | History | Annotate | Download | only in filters

Lines Matching refs:bitmap

21 import android.graphics.Bitmap;
44 native protected void nativeApplyFilter(Bitmap bitmap, int w, int h, float saturation);
47 public Bitmap apply(Bitmap bitmap, float scaleFactor, int quality) {
49 return bitmap;
51 int w = bitmap.getWidth();
52 int h = bitmap.getHeight();
55 nativeApplyFilter(bitmap, w, h, value);
56 return bitmap;