Home
last modified time | relevance | path

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

/packages/apps/ThemePicker/src/com/android/customization/widget/
DDynamicAdaptiveIconDrawable.java82 private Bitmap mLayersBitmap; field in DynamicAdaptiveIconDrawable
259 if (mLayersBitmap == null || mLayersBitmap.getWidth() != b.width() in updateMaskBoundsInternal()
260 || mLayersBitmap.getHeight() != b.height()) { in updateMaskBoundsInternal()
261 mLayersBitmap = Bitmap.createBitmap(b.width(), b.height(), Bitmap.Config.ARGB_8888); in updateMaskBoundsInternal()
271 if (mLayersBitmap == null) { in draw()
275 mCanvas.setBitmap(mLayersBitmap); in draw()
286 mLayersShader = new BitmapShader(mLayersBitmap, TileMode.CLAMP, TileMode.CLAMP); in draw()