com.bumptech.glide.load.engine.EngineKeyFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glide Show documentation
Show all versions of glide Show documentation
A fast and efficient image loading library for Android focused on smooth scrolling.
package com.bumptech.glide.load.engine;
import com.bumptech.glide.load.Key;
import com.bumptech.glide.load.Options;
import com.bumptech.glide.load.Transformation;
import java.util.Map;
class EngineKeyFactory {
@SuppressWarnings("rawtypes")
public EngineKey buildKey(Object model, Key signature, int width, int height,
Map, Transformation>> transformations, Class> resourceClass,
Class> transcodeClass, Options options) {
return new EngineKey(model, signature, width, height, transformations, resourceClass,
transcodeClass, options);
}
}