Lines Matching full:srcdst
87 void applyExpensiveOutlineWithBlur(Bitmap srcDst, Canvas srcDstCanvas, int color,
89 applyExpensiveOutlineWithBlur(srcDst, srcDstCanvas, color, outlineColor, true);
91 void applyExpensiveOutlineWithBlur(Bitmap srcDst, Canvas srcDstCanvas, int color,
97 int[] srcBuffer = new int[srcDst.getWidth() * srcDst.getHeight()];
98 srcDst.getPixels(srcBuffer,
99 0, srcDst.getWidth(), 0, 0, srcDst.getWidth(), srcDst.getHeight());
106 srcDst.setPixels(srcBuffer,
107 0, srcDst.getWidth(), 0, 0, srcDst.getWidth(), srcDst.getHeight());
109 Bitmap glowShape = srcDst.extractAlpha();
137 srcDstCanvas.setBitmap(srcDst);