discord-jadx/app/src/main/java/androidx/core/graphics/drawable/BitmapDrawableKt.java

15 lines
513 B
Java

package androidx.core.graphics.drawable;
import android.content.res.Resources;
import android.graphics.Bitmap;
import android.graphics.drawable.BitmapDrawable;
import d0.z.d.m;
/* compiled from: BitmapDrawable.kt */
public final class BitmapDrawableKt {
public static final BitmapDrawable toDrawable(Bitmap bitmap, Resources resources) {
m.checkNotNullParameter(bitmap, "<this>");
m.checkNotNullParameter(resources, "resources");
return new BitmapDrawable(resources, bitmap);
}
}