Searched refs:mCachedBitmap (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/graphics/java/android/graphics/drawable/
H A DVectorDrawable.java646 Bitmap mCachedBitmap; field in class:VectorDrawable.VectorDrawableState
678 canvas.drawBitmap(mCachedBitmap, 0, 0, p);
703 mCachedBitmap.eraseColor(Color.TRANSPARENT);
704 Canvas tmpCanvas = new Canvas(mCachedBitmap);
709 if (mCachedBitmap == null || !canReuseBitmap(bounds.width(),
711 mCachedBitmap = Bitmap.createBitmap(bounds.width(), bounds.height(),
719 if (width == mCachedBitmap.getWidth()
720 && height == mCachedBitmap.getHeight()) {

Completed in 32 milliseconds