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

  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
BitmapTexture.java 23 // BitmapTexture is a texture whose content is specified by a fixed Bitmap.
28 public class BitmapTexture extends UploadedTexture {
31 public BitmapTexture(Bitmap bitmap) {
35 public BitmapTexture(Bitmap bitmap, boolean hasBorder) {
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
BitmapTexture.java 23 // BitmapTexture is a texture whose content is specified by a fixed Bitmap.
28 public class BitmapTexture extends UploadedTexture {
31 public BitmapTexture(Bitmap bitmap) {
35 public BitmapTexture(Bitmap bitmap, boolean hasBorder) {
  /packages/apps/WallpaperPicker/src/com/android/gallery3d/glrenderer/
BitmapTexture.java 23 // BitmapTexture is a texture whose content is specified by a fixed Bitmap.
28 public class BitmapTexture extends UploadedTexture {
31 public BitmapTexture(Bitmap bitmap) {
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
BitmapScreenNail.java 22 import com.android.gallery3d.glrenderer.BitmapTexture;
26 private final BitmapTexture mBitmapTexture;
29 mBitmapTexture = new BitmapTexture(bitmap);
SlideshowView.java 24 import com.android.gallery3d.glrenderer.BitmapTexture;
40 private BitmapTexture mCurrentTexture;
44 private BitmapTexture mPrevTexture;
66 mCurrentTexture = new BitmapTexture(bitmap);
AlbumSetSlidingWindow.java 31 import com.android.gallery3d.glrenderer.BitmapTexture;
70 private BitmapTexture mLoadingLabel;
78 public BitmapTexture labelTexture;
79 public TiledTexture bitmapTexture;
235 if (entry.bitmapTexture != null) entry.bitmapTexture.recycle();
281 entry.bitmapTexture = null;
305 if (entry.bitmapTexture != null) {
306 mContentUploader.addTexture(entry.bitmapTexture);
321 if (entry.bitmapTexture != null)
    [all...]
  /packages/apps/WallpaperPicker/src/com/android/wallpaperpicker/
DrawableTileSource.java 26 import com.android.gallery3d.glrenderer.BitmapTexture;
38 private BitmapTexture mPreview;
83 mPreview = new BitmapTexture(b);
  /packages/apps/WallpaperPicker/src/com/android/photos/
BitmapRegionTileSource.java 36 import com.android.gallery3d.glrenderer.BitmapTexture;
317 mPreview = new BitmapTexture(preview);
330 return mPreview instanceof BitmapTexture ? ((BitmapTexture) mPreview).getBitmap() : null;
  /packages/apps/Gallery2/src/com/android/photos/
BitmapRegionTileSource.java 33 import com.android.gallery3d.glrenderer.BitmapTexture;
88 mPreview = new BitmapTexture(preview);
  /frameworks/base/packages/WallpaperCropper/src/com/android/photos/
BitmapRegionTileSource.java 38 import com.android.gallery3d.glrenderer.BitmapTexture;
398 mPreview = new BitmapTexture(preview);

Completed in 168 milliseconds