OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:mmipmaps
(Results
1 - 3
of
3
) sorted by null
/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
) {
/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
;
Completed in 3097 milliseconds