OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:toTransform
(Results
1 - 2
of
2
) sorted by null
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
BitmapTransformation.java
20
* public Bitmap transform(BitmapPool pool, Bitmap
toTransform
, int outWidth, int outHeight) {
21
* if (
toTransform
.getWidth() == outWidth &&
toTransform
.getHeight() == outHeight) {
22
* return
toTransform
;
25
* return Bitmap.createScaledBitmap(
toTransform
, outWidth, outHeight, true);
49
Bitmap
toTransform
= resource.get();
50
Bitmap transformed = transform(bitmapPool,
toTransform
, outWidth, outHeight);
53
if (
toTransform
.equals(transformed)) {
70
* @param
toTransform
The {@link android.graphics.Bitmap} to transform.
74
protected abstract Bitmap transform(BitmapPool pool, Bitmap
toTransform
, int outWidth, int outHeight)
[
all
...]
TransformationUtils.java
139
* @param
toTransform
The {@link android.graphics.Bitmap} that will be transformed.
143
public static void setAlpha(Bitmap
toTransform
, Bitmap outBitmap) {
145
outBitmap.setHasAlpha(
toTransform
.hasAlpha());
Completed in 714 milliseconds