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

  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
BasicTexture.java 47 protected int mTextureWidth;
81 mTextureWidth = width > 0 ? Utils.nextPowerOf2(width) : 0;
83 if (mTextureWidth > MAX_TEXTURE_SIZE || mTextureHeight > MAX_TEXTURE_SIZE) {
85 mTextureWidth, mTextureHeight), new Exception());
109 return mTextureWidth;
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
BasicTexture.java 47 protected int mTextureWidth;
81 mTextureWidth = width > 0 ? Utils.nextPowerOf2(width) : 0;
83 if (mTextureWidth > MAX_TEXTURE_SIZE || mTextureHeight > MAX_TEXTURE_SIZE) {
85 mTextureWidth, mTextureHeight), new Exception());
109 return mTextureWidth;
  /packages/apps/WallpaperPicker/src/com/android/gallery3d/glrenderer/
BasicTexture.java 46 protected int mTextureWidth;
78 mTextureWidth = width > 0 ? Utils.nextPowerOf2(width) : 0;
80 if (mTextureWidth > MAX_TEXTURE_SIZE || mTextureHeight > MAX_TEXTURE_SIZE) {
82 mTextureWidth, mTextureHeight), new Exception());
102 return mTextureWidth;

Completed in 101 milliseconds