Lines Matching refs:srcDstCanvas

96     void applyExpensiveOutlineWithBlur(Bitmap srcDst, Canvas srcDstCanvas, int color,  in applyExpensiveOutlineWithBlur()  argument
98 applyExpensiveOutlineWithBlur(srcDst, srcDstCanvas, color, outlineColor, true, in applyExpensiveOutlineWithBlur()
101 void applyExpensiveOutlineWithBlur(Bitmap srcDst, Canvas srcDstCanvas, int color, in applyExpensiveOutlineWithBlur() argument
149 srcDstCanvas.setBitmap(glowShape); in applyExpensiveOutlineWithBlur()
150 srcDstCanvas.drawColor(0xFF000000, PorterDuff.Mode.SRC_OUT); in applyExpensiveOutlineWithBlur()
170 srcDstCanvas.setBitmap(thickInnerBlur); in applyExpensiveOutlineWithBlur()
171 srcDstCanvas.drawBitmap(glowShape, -thickInnerBlurOffset[0], in applyExpensiveOutlineWithBlur()
173 srcDstCanvas.drawRect(0, 0, -thickInnerBlurOffset[0], thickInnerBlur.getHeight(), in applyExpensiveOutlineWithBlur()
175 srcDstCanvas.drawRect(0, 0, thickInnerBlur.getWidth(), -thickInnerBlurOffset[1], in applyExpensiveOutlineWithBlur()
179 srcDstCanvas.setBitmap(srcDst); in applyExpensiveOutlineWithBlur()
180 srcDstCanvas.drawColor(0, PorterDuff.Mode.CLEAR); in applyExpensiveOutlineWithBlur()
182 srcDstCanvas.drawBitmap(thickInnerBlur, thickInnerBlurOffset[0], thickInnerBlurOffset[1], in applyExpensiveOutlineWithBlur()
184 srcDstCanvas.drawBitmap(thickOuterBlur, outerBlurOffset[0], outerBlurOffset[1], in applyExpensiveOutlineWithBlur()
189 srcDstCanvas.drawBitmap(brightOutline, brightOutlineOffset[0], brightOutlineOffset[1], in applyExpensiveOutlineWithBlur()
193 srcDstCanvas.setBitmap(null); in applyExpensiveOutlineWithBlur()
200 void applyExtraThickExpensiveOutlineWithBlur(Bitmap srcDst, Canvas srcDstCanvas, int color, in applyExtraThickExpensiveOutlineWithBlur() argument
202 applyExpensiveOutlineWithBlur(srcDst, srcDstCanvas, color, outlineColor, EXTRA_THICK); in applyExtraThickExpensiveOutlineWithBlur()
205 void applyThickExpensiveOutlineWithBlur(Bitmap srcDst, Canvas srcDstCanvas, int color, in applyThickExpensiveOutlineWithBlur() argument
207 applyExpensiveOutlineWithBlur(srcDst, srcDstCanvas, color, outlineColor, THICK); in applyThickExpensiveOutlineWithBlur()
210 void applyMediumExpensiveOutlineWithBlur(Bitmap srcDst, Canvas srcDstCanvas, int color, in applyMediumExpensiveOutlineWithBlur() argument
212 applyExpensiveOutlineWithBlur(srcDst, srcDstCanvas, color, outlineColor, clipAlpha, in applyMediumExpensiveOutlineWithBlur()
216 void applyMediumExpensiveOutlineWithBlur(Bitmap srcDst, Canvas srcDstCanvas, int color, in applyMediumExpensiveOutlineWithBlur() argument
218 applyExpensiveOutlineWithBlur(srcDst, srcDstCanvas, color, outlineColor, MEDIUM); in applyMediumExpensiveOutlineWithBlur()