Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/wallpaper/
DWallpaperCropper.java287 float cropRatio = ((float) crop.width()) / crop.height(); in getAdjustedCrop() local
289 if (cropRatio == screenRatio) return crop; in getAdjustedCrop()
290 if (cropRatio > screenRatio) { in getAdjustedCrop()
308 float additionalWidthForParallax = cropRatio / screenRatio - 1f; in getAdjustedCrop()
/frameworks/base/packages/WallpaperBackup/src/com/android/wallpaperbackup/
DWallpaperBackupAgent.java784 float cropRatio = (float) crop.width() / crop.height(); in sameCenter() local
788 if (screenRatio < cropRatio) { in sameCenter()
828 Slog.d(TAG, "cropRatio: " + cropRatio); in sameCenter()