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