HomeSort by relevance Sort by last modified time
    Searched refs:m_uploadTexture (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/skia/
PlatformContextSkia.h 227 mutable RefPtr<Texture> m_uploadTexture;
PlatformContextSkia.cpp 733 m_uploadTexture.clear();
757 m_uploadTexture.clear();
868 if (!m_uploadTexture || m_uploadTexture->tiles().totalSizeX() < bitmap.width() || m_uploadTexture->tiles().totalSizeY() < bitmap.height())
869 m_uploadTexture = context->createTexture(Texture::BGRA8, bitmap.width(), bitmap.height());
871 m_uploadTexture->updateSubRect(bitmap.getPixels(), m_softwareDirtyRect);
873 gpuCanvas()->drawTexturedRect(m_uploadTexture.get(), m_softwareDirtyRect, m_softwareDirtyRect, identity, 1.0, ColorSpaceDeviceRGB, op, false);

Completed in 54 milliseconds