Searched defs:textureInfo (Results 1 - 5 of 5) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/android/
H A DBaseRenderer.h64 TextureInfo* textureInfo; member in struct:WebCore::TileRenderInfo
H A DBaseTileTexture.cpp151 void BaseTileTexture::producerUpdate(TextureInfo* textureInfo, const SkBitmap& bitmap) argument
220 TextureTileInfo* textureInfo = m_texturesInfo.get(getWriteableTexture()); local
221 if (!textureInfo) {
222 textureInfo = new TextureTileInfo();
224 textureInfo->m_x = x;
225 textureInfo->m_y = y;
226 textureInfo->m_scale = scale;
227 textureInfo->m_painter = painter;
228 textureInfo->m_picture = pictureCount;
229 m_texturesInfo.set(getWriteableTexture(), textureInfo); local
234 TextureTileInfo* textureInfo = &m_ownTextureTileInfo; local
[all...]
H A DBaseTile.cpp265 TextureInfo* textureInfo = m_frontTexture->consumerLock();
266 if (!textureInfo) {
370 TextureInfo* textureInfo = texture->producerLock(); local
393 renderInfo.textureInfo = textureInfo;
403 || textureInfo->m_width != tileWidth
404 || textureInfo->m_height != tileHeight) {
408 bool surfaceTextureMode = textureInfo->getSharedTextureMode() == SurfaceTextureMode;
470 texture->setTile(textureInfo, x, y, scale, painter, pictureCount);
H A DTransferQueue.cpp462 TextureTileInfo* textureInfo = &m_transferQueue[index].tileInfo; local
464 textureInfo->m_x = renderInfo->x;
465 textureInfo->m_y = renderInfo->y;
466 textureInfo->m_scale = renderInfo->scale;
467 textureInfo->m_painter = renderInfo->tilePainter;
469 textureInfo->m_picture = renderInfo->textureInfo->m_pictureCount;
H A DGLUtils.cpp384 TextureInfo* textureInfo = renderInfo->textureInfo; local
385 SharedTextureMode mode = textureInfo->getSharedTextureMode();
386 if (requiredSize.equals(textureInfo->m_width, textureInfo->m_height)) {
388 GLUtils::updateTextureWithBitmap(textureInfo->m_textureId, x, y, bitmap);
404 GLUtils::createTextureWithBitmap(textureInfo->m_textureId, bitmap);
411 textureInfo->m_width = bitmap.width();
412 textureInfo->m_height = bitmap.height();
413 textureInfo
[all...]

Completed in 79 milliseconds