Lines Matching refs:Bitmap
19 import android.graphics.Bitmap;
102 * Apply an outer blur to the given bitmap.
103 * You should use OUTER_BLUR_RADIUS to ensure that the bitmap is big enough to draw
106 void applyOuterBlur(Bitmap bitmap, Canvas canvas, int color) {
108 Bitmap glow = bitmap.extractAlpha(mBlurPaint, mTempOffset);
121 * bitmap.
123 void applyExpensiveOutlineWithBlur(Bitmap srcDst, Canvas srcDstCanvas, int color,
128 void applyExpensiveOutlineWithBlur(Bitmap srcDst, Canvas srcDstCanvas, int color,
136 Bitmap glowShape = srcDst.extractAlpha(alphaClipPaint, mTempOffset);
155 Bitmap thickOuterBlur = glowShape.extractAlpha(mBlurPaint, outerBlurOffset);
163 Bitmap brightOutline = glowShape.extractAlpha(mBlurPaint, brightOutlineOffset);
184 Bitmap thickInnerBlur = glowShape.extractAlpha(mBlurPaint, thickInnerBlurOffset);
217 void applyExtraThickExpensiveOutlineWithBlur(Bitmap srcDst, Canvas srcDstCanvas, int color,
222 void applyThickExpensiveOutlineWithBlur(Bitmap srcDst, Canvas srcDstCanvas, int color,
227 void applyMediumExpensiveOutlineWithBlur(Bitmap srcDst, Canvas srcDstCanvas, int color,
233 void applyMediumExpensiveOutlineWithBlur(Bitmap srcDst, Canvas srcDstCanvas, int color,