Home | History | Annotate | Download | only in launcher2

Lines Matching refs:tempBitmap

1236         Bitmap tempBitmap = mCachedShortcutPreviewBitmap.get();
1238 if (tempBitmap == null ||
1239 tempBitmap.getWidth() != maxWidth ||
1240 tempBitmap.getHeight() != maxHeight) {
1241 tempBitmap = Bitmap.createBitmap(maxWidth, maxHeight, Config.ARGB_8888);
1242 mCachedShortcutPreviewBitmap.set(tempBitmap);
1244 c.setBitmap(tempBitmap);
1261 icon, tempBitmap, paddingLeft, paddingTop, scaledIconWidth, scaledIconWidth);
1276 c.drawBitmap(tempBitmap, 0, 0, p);