Searched defs:mTempCanvas (Results 1 - 4 of 4) 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/src/com/android/launcher3/
H A DHolographicViewHelper.java30 private final Canvas mTempCanvas = new Canvas(); field in class:HolographicViewHelper
47 Bitmap original = createOriginalImage(v, mTempCanvas);
48 Bitmap outline = createImageWithOverlay(v, mTempCanvas, mHighlightColor);
49 Bitmap hotword = createImageWithOverlay(v, mTempCanvas, mHotwordColor);
/packages/apps/Launcher3/WallpaperPicker/src/com/android/photos/
H A DBitmapRegionTileSource.java96 Canvas mTempCanvas; field in class:DumbBitmapRegionDecoder
122 if (mTempCanvas == null) {
123 mTempCanvas = new Canvas();
132 mTempCanvas.setBitmap(newBitmap);
133 mTempCanvas.save();
134 mTempCanvas.scale(1f / sampleSize, 1f / sampleSize);
135 mTempCanvas.drawBitmap(mBuffer, -wantRegion.left, -wantRegion.top, mTempPaint);
136 mTempCanvas.restore();
137 mTempCanvas.setBitmap(null);

Completed in 135 milliseconds