Home | History | Annotate | Download | only in launcher2

Lines Matching defs:srcDst

96     void applyExpensiveOutlineWithBlur(Bitmap srcDst, Canvas srcDstCanvas, int color,
98 applyExpensiveOutlineWithBlur(srcDst, srcDstCanvas, color, outlineColor, true,
101 void applyExpensiveOutlineWithBlur(Bitmap srcDst, Canvas srcDstCanvas, int color,
107 int[] srcBuffer = new int[srcDst.getWidth() * srcDst.getHeight()];
108 srcDst.getPixels(srcBuffer,
109 0, srcDst.getWidth(), 0, 0, srcDst.getWidth(), srcDst.getHeight());
116 srcDst.setPixels(srcBuffer,
117 0, srcDst.getWidth(), 0, 0, srcDst.getWidth(), srcDst.getHeight());
119 Bitmap glowShape = srcDst.extractAlpha();
179 srcDstCanvas.setBitmap(srcDst);
200 void applyExtraThickExpensiveOutlineWithBlur(Bitmap srcDst, Canvas srcDstCanvas, int color,
202 applyExpensiveOutlineWithBlur(srcDst, srcDstCanvas, color, outlineColor, EXTRA_THICK);
205 void applyThickExpensiveOutlineWithBlur(Bitmap srcDst, Canvas srcDstCanvas, int color,
207 applyExpensiveOutlineWithBlur(srcDst, srcDstCanvas, color, outlineColor, THICK);
210 void applyMediumExpensiveOutlineWithBlur(Bitmap srcDst, Canvas srcDstCanvas, int color,
212 applyExpensiveOutlineWithBlur(srcDst, srcDstCanvas, color, outlineColor, clipAlpha,
216 void applyMediumExpensiveOutlineWithBlur(Bitmap srcDst, Canvas srcDstCanvas, int color,
218 applyExpensiveOutlineWithBlur(srcDst, srcDstCanvas, color, outlineColor, MEDIUM);