Lines Matching full:bitmap
19 import android.graphics.Bitmap;
42 private final Bitmap mSource;
52 public AdaptiveBackgroundTexture(Bitmap source, int width, int height) {
77 protected Bitmap load(RenderView view) {
80 Bitmap source = mSource;
137 // Return a bitmap scaled to the desired size.
138 Bitmap filtered = Bitmap.createBitmap(in, cropWidth, cropHeight, Bitmap.Config.ARGB_8888);
140 // Composite the bitmap scaled to the target size and darken the pixels.
141 Bitmap output = Bitmap.createBitmap(destWidth, destHeight, Bitmap.Config.ARGB_8888);