Searched refs:textureSize (Results 1 - 5 of 5) sorted by relevance
/external/webkit/Source/WebCore/platform/graphics/android/ |
H A D | ClassTracker.cpp | 98 float textureSize = 256 * 256 * 4 / 1024.0 / 1024.0; local 103 nbAllocatedTextures * textureSize, 105 nbAllocatedLayerTextures * textureSize, 106 (nbAllocatedTextures + nbAllocatedLayerTextures) * textureSize);
|
/external/webkit/Source/WebCore/platform/graphics/chromium/ |
H A D | 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);
|
H A D | GLES2Canvas.cpp | 395 void GLES2Canvas::drawTexturedRect(unsigned texture, const IntSize& textureSize, const FloatRect& srcRect, const FloatRect& dstRect, ColorSpace colorSpace, CompositeOperator compositeOp) argument 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) argument 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) argument 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) argument 522 float imageIncrement[2] = { 1.0f / textureSize [all...] |
H A D | LayerRendererChromium.cpp | 968 bool LayerRendererChromium::checkTextureSize(const IntSize& textureSize) argument 970 if (textureSize.width() > m_maxTextureSize || textureSize.height() > m_maxTextureSize)
|
/external/webkit/Source/WebCore/platform/graphics/texmap/ |
H A D | TextureMapperNode.cpp | 39 const IntSize textureSize = texture->size(); local 41 return textureSize.width() * textureSize.height() * 4;
|
Completed in 534 milliseconds