OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mTextureHeight
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
BasicTexture.java
48
protected int
mTextureHeight
;
82
mTextureHeight
= height > 0 ? Utils.nextPowerOf2(height) : 0;
83
if (mTextureWidth > MAX_TEXTURE_SIZE ||
mTextureHeight
> MAX_TEXTURE_SIZE) {
85
mTextureWidth,
mTextureHeight
), new Exception());
114
return
mTextureHeight
;
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
BasicTexture.java
48
protected int
mTextureHeight
;
82
mTextureHeight
= height > 0 ? Utils.nextPowerOf2(height) : 0;
83
if (mTextureWidth > MAX_TEXTURE_SIZE ||
mTextureHeight
> MAX_TEXTURE_SIZE) {
85
mTextureWidth,
mTextureHeight
), new Exception());
114
return
mTextureHeight
;
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/glrenderer/
BasicTexture.java
47
protected int
mTextureHeight
;
81
mTextureHeight
= height > 0 ? Utils.nextPowerOf2(height) : 0;
82
if (mTextureWidth > MAX_TEXTURE_SIZE ||
mTextureHeight
> MAX_TEXTURE_SIZE) {
84
mTextureWidth,
mTextureHeight
), new Exception());
113
return
mTextureHeight
;
Completed in 66 milliseconds