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

  /frameworks/base/opengl/libagl/
TextureObjectManager.cpp 38 if (mMipmaps)
47 mMipmaps = 0;
74 // here, by construction, mMipmaps=0 && mNumExtraLod=0
85 mMipmaps = (GGLSurface*)malloc(numLods * sizeof(GGLSurface));
86 if (!mMipmaps)
89 memset(mMipmaps, 0, numLods * sizeof(GGLSurface));
96 if (mMipmaps) {
98 if (mMipmaps[i].data) {
99 free(mMipmaps[i].data);
102 free(mMipmaps);
    [all...]
TextureObjectManager.h 60 bool hasMipmaps() const { return mMipmaps!=0; }
69 GGLSurface *mMipmaps;
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
BitmapTileProvider.java 29 private final Bitmap[] mMipmaps;
48 mMipmaps = list.toArray(new Bitmap[list.size()]);
65 return mMipmaps.length;
71 canvas.drawBitmap(mMipmaps[level], -(x >> level), -(y >> level), null);
78 for (Bitmap bitmap : mMipmaps) {

Completed in 2702 milliseconds