HomeSort by relevance Sort by last modified time
    Searched refs:MAX_IMAGE_DIMENSION_PX (Results 1 - 3 of 3) sorted by null

  /packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/
BitmapWorkerOptions.java 31 static final int MAX_IMAGE_DIMENSION_PX = 2048;
65 mWidth = MAX_IMAGE_DIMENSION_PX;
66 mHeight = MAX_IMAGE_DIMENSION_PX;
82 if (largestDim > MAX_IMAGE_DIMENSION_PX) {
83 double scale = (double) MAX_IMAGE_DIMENSION_PX / largestDim;
DrawableDownloader.java 96 if (options.getHeight() != BitmapWorkerOptions.MAX_IMAGE_DIMENSION_PX) {
100 } else if (options.getWidth() != BitmapWorkerOptions.MAX_IMAGE_DIMENSION_PX) {
BitmapDownloader.java 281 if (key.getHeight() != BitmapWorkerOptions.MAX_IMAGE_DIMENSION_PX) {

Completed in 66 milliseconds