Home
last modified time | relevance | path

Searched refs:bitmapSize (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/
DBitmapUtils.java139 public static Bitmap fromDrawable(Drawable drawable, @Nullable Size bitmapSize) { in fromDrawable() argument
149 bitmapSize = new Size(1, 1); in fromDrawable()
150 drawable.setBounds(0, 0, bitmapSize.getWidth(), bitmapSize.getHeight()); in fromDrawable()
152 if (bitmapSize == null) { in fromDrawable()
153 bitmapSize = new Size(drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight()); in fromDrawable()
158 RectF dstR = new RectF(0f, 0f, bitmapSize.getWidth(), bitmapSize.getHeight()); in fromDrawable()
162 Bitmap bitmap = Bitmap.createBitmap(bitmapSize.getWidth(), bitmapSize.getHeight(), in fromDrawable()
/packages/apps/WallpaperPicker/src/com/android/wallpaperpicker/
DWallpaperCropActivity.java189 int bitmapSize = b.getWidth() * b.getHeight(); in handleMessage()
190 if ((bitmapSize >= count) && (bitmapSize < currentBitmapSize)) { in handleMessage()
192 currentBitmapSize = bitmapSize; in handleMessage()