OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:textureSize
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/android/utils/
ClassTracker.cpp
97
float
textureSize
= 256 * 256 * 4 / 1024.0 / 1024.0;
102
nbAllocatedTextures *
textureSize
,
104
nbAllocatedLayerTextures *
textureSize
,
105
(nbAllocatedTextures + nbAllocatedLayerTextures) *
textureSize
);
/external/webkit/Source/WebCore/platform/graphics/texmap/
TextureMapperNode.cpp
39
const IntSize
textureSize
= texture->size();
41
return
textureSize
.width() *
textureSize
.height() * 4;
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
NinePatchTexture.java
265
int
textureSize
= Utils.nextPowerOf2(source);
266
float textureBound = (float) source /
textureSize
;
285
u[i + 1] = Math.min((div[i] + 0.5f) /
textureSize
, textureBound);
296
u[i + 2] = Math.min((lastU - 0.5f)/
textureSize
, textureBound);
Completed in 109 milliseconds