OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mTextureHeight
(Results
1 - 4
of
4
) 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
;
TiledTexture.java
127
mTextureHeight
= TILE_SIZE;
/packages/apps/WallpaperPicker/src/com/android/gallery3d/glrenderer/
BasicTexture.java
47
protected int
mTextureHeight
;
79
mTextureHeight
= height > 0 ? Utils.nextPowerOf2(height) : 0;
80
if (mTextureWidth > MAX_TEXTURE_SIZE ||
mTextureHeight
> MAX_TEXTURE_SIZE) {
82
mTextureWidth,
mTextureHeight
), new Exception());
107
return
mTextureHeight
;
Completed in 3776 milliseconds