Home
last modified time | relevance | path

Searched refs:mColorFuture (Results 1 – 4 of 4) sorted by relevance

/packages/apps/WallpaperPicker2/src/com/android/wallpaper/util/
DWallpaperSurfaceCallback2.java71 private final Future<ColorInfo> mColorFuture; field in WallpaperSurfaceCallback2
96 mColorFuture = colorFuture; in WallpaperSurfaceCallback2()
178 if (mColorFuture != null && mColorFuture.isDone()) { in getPlaceHolderColor()
180 ColorInfo colorInfo = mColorFuture.get(); in getPlaceHolderColor()
DWallpaperSurfaceCallback.java73 private final Future<ColorInfo> mColorFuture; field in WallpaperSurfaceCallback
102 mColorFuture = colorFuture; in WallpaperSurfaceCallback()
183 if (mColorFuture != null && mColorFuture.isDone()) { in setupSurfaceWallpaper()
185 ColorInfo colorInfo = mColorFuture.get(); in setupSurfaceWallpaper()
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/picker/
DImagePreviewFragment.java116 protected Future<ColorInfo> mColorFuture; field in ImagePreviewFragment
133 mColorFuture = mWallpaper.computeColorInfo(context); in onCreate()
530 if (mColorFuture.isDone()) { in surfaceCreated()
532 int colorValue = mColorFuture.get().getPlaceholderColor(); in surfaceCreated()
DLivePreviewFragment.java105 private Future<ColorInfo> mColorFuture; field in LivePreviewFragment
145 mColorFuture = mWallpaper.computeColorInfo(context); in onCreate()
218 mColorFuture, this::previewLiveWallpaper); in onCreateView()
552 return mColorFuture.get(50, TimeUnit.MILLISECONDS);