Home | History | Annotate | Download | only in glide

Lines Matching defs:transformation

13 import com.bumptech.glide.load.Transformation;
77 private Transformation<ResourceType> transformation = UnitTransformation.get();
146 * {@link Transformation}s. However, {@link #placeholder(int)} and {@link #error(int)},
307 * Transform resources with the given {@link Transformation}s. Replaces any existing transformation or
314 Transformation<ResourceType>... transformations) {
317 transformation = transformations[0];
319 transformation = new MultiTransformation<ResourceType>(transformations);
326 * Removes the current {@link com.bumptech.glide.load.Transformation}.
332 Transformation<ResourceType> transformation = UnitTransformation.get();
333 return transform(transformation);
773 transformation,