Home | History | Annotate | Download | only in gif

Lines Matching defs:transformation

15 import com.bumptech.glide.load.Transformation;
37 private Transformation<Bitmap> transformation = UnitTransformation.get();
72 public void setFrameTransformation(Transformation<Bitmap> transformation) {
73 if (transformation == null) {
74 throw new NullPointerException("Transformation must not be null");
76 this.transformation = transformation;
96 .transform(transformation)