Home
last modified time | relevance | path

Searched refs:rotatedBounds (Results 1 – 2 of 2) sorted by relevance

/packages/apps/WallpaperPicker/src/com/android/wallpaperpicker/tileinfo/
DWallpaperTileInfo.java58 float[] rotatedBounds = new float[] { bounds.x, bounds.y }; in createThumbnail() local
59 rotateMatrix.mapPoints(rotatedBounds); in createThumbnail()
60 rotatedBounds[0] = Math.abs(rotatedBounds[0]); in createThumbnail()
61 rotatedBounds[1] = Math.abs(rotatedBounds[1]); in createThumbnail()
64 (int) rotatedBounds[0], (int) rotatedBounds[1], width, height, leftAligned); in createThumbnail()
/packages/apps/WallpaperPicker/src/com/android/wallpaperpicker/common/
DInputStreamProvider.java85 float[] rotatedBounds = new float[] { bounds.x, bounds.y }; in readCroppedBitmap() local
86 rotateMatrix.mapPoints(rotatedBounds); in readCroppedBitmap()
87 rotatedBounds[0] = Math.abs(rotatedBounds[0]); in readCroppedBitmap()
88 rotatedBounds[1] = Math.abs(rotatedBounds[1]); in readCroppedBitmap()
90 cropBounds.offset(-rotatedBounds[0]/2, -rotatedBounds[1]/2); in readCroppedBitmap()