Home | History | Annotate | Download | only in launcher3

Lines Matching defs:srcDst

104     void applyExpensiveOutlineWithBlur(Bitmap srcDst, Canvas srcDstCanvas, int color,
106 applyExpensiveOutlineWithBlur(srcDst, srcDstCanvas, color, outlineColor, true,
109 void applyExpensiveOutlineWithBlur(Bitmap srcDst, Canvas srcDstCanvas, int color,
115 int[] srcBuffer = new int[srcDst.getWidth() * srcDst.getHeight()];
116 srcDst.getPixels(srcBuffer,
117 0, srcDst.getWidth(), 0, 0, srcDst.getWidth(), srcDst.getHeight());
124 srcDst.setPixels(srcBuffer,
125 0, srcDst.getWidth(), 0, 0, srcDst.getWidth(), srcDst.getHeight());
127 Bitmap glowShape = srcDst.extractAlpha();
187 srcDstCanvas.setBitmap(srcDst);
208 void applyExtraThickExpensiveOutlineWithBlur(Bitmap srcDst, Canvas srcDstCanvas, int color,
210 applyExpensiveOutlineWithBlur(srcDst, srcDstCanvas, color, outlineColor, EXTRA_THICK);
213 void applyThickExpensiveOutlineWithBlur(Bitmap srcDst, Canvas srcDstCanvas, int color,
215 applyExpensiveOutlineWithBlur(srcDst, srcDstCanvas, color, outlineColor, THICK);
218 void applyMediumExpensiveOutlineWithBlur(Bitmap srcDst, Canvas srcDstCanvas, int color,
220 applyExpensiveOutlineWithBlur(srcDst, srcDstCanvas, color, outlineColor, clipAlpha,
224 void applyMediumExpensiveOutlineWithBlur(Bitmap srcDst, Canvas srcDstCanvas, int color,
226 applyExpensiveOutlineWithBlur(srcDst, srcDstCanvas, color, outlineColor, MEDIUM);