Home | History | Annotate | Download | only in browser

Lines Matching refs:mCapture

188     private Bitmap mCapture;
1161 if (mCapture == null) {
1162 mCapture = Bitmap.createBitmap(mCaptureWidth, mCaptureHeight,
1164 mCapture.eraseColor(Color.WHITE);
1172 mCapture = null;
1685 if (mCapture != null) {
1718 return mCapture;
1777 if (mMainView == null || mCapture == null) return;
1781 Canvas c = new Canvas(mCapture);
1795 c.drawRect(0, 0, 1, mCapture.getHeight(), sAlphaPaint);
1796 c.drawRect(mCapture.getWidth() - 1, 0, mCapture.getWidth(),
1797 mCapture.getHeight(), sAlphaPaint);
1798 c.drawRect(0, 0, mCapture.getWidth(), 1, sAlphaPaint);
1799 c.drawRect(0, mCapture.getHeight() - 1, mCapture.getWidth(),
1800 mCapture.getHeight(), sAlphaPaint);
1866 if (mCapture == null) {
1871 mCapture.copyPixelsFromBuffer(buffer);
1875 + "capture: " + mCapture.getByteCount());