Home | History | Annotate | Download | only in drawable

Lines Matching defs:mMaskBitmap

114     private Bitmap mMaskBitmap;
335 if (mMaskBitmap == null || mMaskBitmap.getWidth() != b.width() ||
336 mMaskBitmap.getHeight() != b.height()) {
337 mMaskBitmap = Bitmap.createBitmap(b.width(), b.height(), Bitmap.Config.ALPHA_8);
340 // mMaskBitmap bound [0, w] x [0, h]
341 mCanvas.setBitmap(mMaskBitmap);
374 if (mMaskBitmap != null) {
376 canvas.drawBitmap(mMaskBitmap, bounds.left, bounds.top, mPaint);