jimu-decompiled/sources/com/bumptech/glide/load/resource/drawable/UnitDrawableDecoder.java
2025-05-13 19:24:51 +02:00

20 lines
692 B
Java

package com.bumptech.glide.load.resource.drawable;
import android.graphics.drawable.Drawable;
import com.bumptech.glide.load.Options;
import com.bumptech.glide.load.ResourceDecoder;
import com.bumptech.glide.load.engine.Resource;
/* loaded from: classes.dex */
public class UnitDrawableDecoder implements ResourceDecoder<Drawable, Drawable> {
@Override // com.bumptech.glide.load.ResourceDecoder
public boolean a(Drawable drawable, Options options) {
return true;
}
@Override // com.bumptech.glide.load.ResourceDecoder
public Resource<Drawable> a(Drawable drawable, int i, int i2, Options options) {
return NonOwnedDrawableResource.a(drawable);
}
}