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

15 lines
513 B
Java
Raw Normal View History

2021-07-24 02:37:17 +00:00
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) {
2021-09-21 07:33:49 +00:00
m.checkNotNullParameter(bitmap, "<this>");
m.checkNotNullParameter(resources, "resources");
2021-07-24 02:37:17 +00:00
return new BitmapDrawable(resources, bitmap);
}
}