HomeSort by relevance Sort by last modified time
    Searched defs:mMaskBitmap (Results 1 - 2 of 2) sorted by null

  /frameworks/rs/tests/java_api/HealingBrush/src/rs/example/android/com/healingbrush/
FindRegion.java 42 Bitmap mMaskBitmap;
63 mMaskBitmap = buildMask(mRoiBounds, mPointsXY);
  /frameworks/base/graphics/java/android/graphics/drawable/
AdaptiveIconDrawable.java 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);
    [all...]

Completed in 104 milliseconds