Home
last modified time | relevance | path

Searched refs:toTransform (Results 1 – 4 of 4) sorted by relevance

/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
DCenterCrop.java27 protected Bitmap transform(BitmapPool pool, Bitmap toTransform, int outWidth, int outHeight) { in transform() argument
28 final Bitmap toReuse = pool.get(outWidth, outHeight, toTransform.getConfig() != null in transform()
29 ? toTransform.getConfig() : Bitmap.Config.ARGB_8888); in transform()
30 … Bitmap transformed = TransformationUtils.centerCrop(toReuse, toTransform, outWidth, outHeight); in transform()
DBitmapTransformation.java49 Bitmap toTransform = resource.get(); in transform() local
50 Bitmap transformed = transform(bitmapPool, toTransform, outWidth, outHeight); in transform()
53 if (toTransform.equals(transformed)) { in transform()
74 …protected abstract Bitmap transform(BitmapPool pool, Bitmap toTransform, int outWidth, int outHeig… in transform() argument
DFitCenter.java23 protected Bitmap transform(BitmapPool pool, Bitmap toTransform, int outWidth, int outHeight) { in transform() argument
24 return TransformationUtils.fitCenter(toTransform, pool, outWidth, outHeight); in transform()
DTransformationUtils.java143 public static void setAlpha(Bitmap toTransform, Bitmap outBitmap) { in setAlpha() argument
145 outBitmap.setHasAlpha(toTransform.hasAlpha()); in setAlpha()