Searched defs:mTempCanvas (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Launcher2/src/com/android/launcher2/
H A DHolographicViewHelper.java30 private final Canvas mTempCanvas = new Canvas(); field in class:HolographicViewHelper
46 Bitmap original = createOriginalImage(v, mTempCanvas);
47 Bitmap outline = createPressImage(v, mTempCanvas);
H A DBubbleTextView.java49 private final Canvas mTempCanvas = new Canvas(); field in class:BubbleTextView
146 mTempCanvas, mFocusedGlowColor, mFocusedOutlineColor);
220 mTempCanvas, mPressedGlowColor, mPressedOutlineColor);
/packages/apps/Launcher3/WallpaperPicker/src/com/android/photos/
H A DBitmapRegionTileSource.java95 Canvas mTempCanvas; field in class:DumbBitmapRegionDecoder
121 if (mTempCanvas == null) {
122 mTempCanvas = new Canvas();
131 mTempCanvas.setBitmap(newBitmap);
132 mTempCanvas.save();
133 mTempCanvas.scale(1f / sampleSize, 1f / sampleSize);
134 mTempCanvas.drawBitmap(mBuffer, -wantRegion.left, -wantRegion.top, mTempPaint);
135 mTempCanvas.restore();
136 mTempCanvas.setBitmap(null);

Completed in 65 milliseconds