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

  /frameworks/native/opengl/libagl/
TextureObjectManager.cpp 36 if (mMipmaps)
45 mMipmaps = 0;
72 // here, by construction, mMipmaps=0 && mNumExtraLod=0
83 mMipmaps = (GGLSurface*)malloc(numLods * sizeof(GGLSurface));
84 if (!mMipmaps)
87 memset(mMipmaps, 0, numLods * sizeof(GGLSurface));
94 if (mMipmaps) {
96 if (mMipmaps[i].data) {
97 free(mMipmaps[i].data);
100 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 30 private final Bitmap[] mMipmaps;
49 mMipmaps = list.toArray(new Bitmap[list.size()]);
70 return mMipmaps.length;
85 Bitmap mipmap = mMipmaps[level];
96 for (Bitmap bitmap : mMipmaps) {

Completed in 578 milliseconds