OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:textureSize
(Results
1 - 6
of
6
) 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/chromium/
GLES2Canvas.h
88
void drawTexturedRect(unsigned texture, const IntSize&
textureSize
, const FloatRect& srcRect, const FloatRect& dstRect, ColorSpace, CompositeOperator);
106
void drawTexturedQuad(const IntSize&
textureSize
, const FloatRect& srcRect, const FloatRect& dstRect, const AffineTransform&, float alpha);
107
void drawTexturedQuadMitchell(const IntSize&
textureSize
, const FloatRect& srcRect, const FloatRect& dstRect, const AffineTransform&, float alpha);
108
void convolveRect(unsigned texture, const IntSize&
textureSize
, const FloatRect& srcRect, const FloatRect& dstRect, float imageIncrement[2], const float* kernel, int kernelWidth);
GLES2Canvas.cpp
395
void GLES2Canvas::drawTexturedRect(unsigned texture, const IntSize&
textureSize
, const FloatRect& srcRect, const FloatRect& dstRect, ColorSpace colorSpace, CompositeOperator compositeOp)
405
drawTexturedQuad(
textureSize
, srcRect, dstRect, m_state->m_ctm, m_state->m_alpha);
448
void GLES2Canvas::convolveRect(unsigned texture, const IntSize&
textureSize
, const FloatRect& srcRect, const FloatRect& dstRect, float imageIncrement[2], const float* kernel, int kernelWidth)
461
texMatrix.scale(1.0f /
textureSize
.width(), 1.0f /
textureSize
.height());
490
void GLES2Canvas::drawTexturedQuad(const IntSize&
textureSize
, const FloatRect& srcRect, const FloatRect& dstRect, const AffineTransform& transform, float alpha)
498
texMatrix.scale(1.0f /
textureSize
.width(), 1.0f /
textureSize
.height());
508
void GLES2Canvas::drawTexturedQuadMitchell(const IntSize&
textureSize
, const FloatRect& srcRect, const FloatRect& dstRect, const AffineTransform& transform, float alpha)
522
float imageIncrement[2] = { 1.0f /
textureSize
.width(), 1.0f / textureSize.height() }
[
all
...]
LayerRendererChromium.cpp
[
all
...]
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
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);
/external/webkit/Source/WebCore/platform/graphics/texmap/
TextureMapperNode.cpp
39
const IntSize
textureSize
= texture->size();
41
return
textureSize
.width() *
textureSize
.height() * 4;
Completed in 242 milliseconds