Home
last modified time | relevance | path

Searched refs:destBitmap (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/graphics/win/
DTransparencyWin.cpp111 ImageBuffer* destBitmap() { return m_destBitmap.get(); } in destBitmap() function in WebCore::TransparencyWin::OwnedBuffers
365 m_layerBuffer = m_ownedBuffers->destBitmap(); in initializeNewContext()
382 m_layerBuffer = m_cachedBuffers->destBitmap(); in initializeNewContext()
383 m_drawContext = m_cachedBuffers->destBitmap()->context(); in initializeNewContext()
396 m_layerBuffer = m_cachedBuffers->destBitmap(); in initializeNewContext()
397 m_drawContext = m_cachedBuffers->destBitmap()->context(); in initializeNewContext()
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DImageBuffer.cpp320 SkBitmap destBitmap; in getImageData() local
321 destBitmap.setConfig(SkBitmap::kARGB_8888_Config, rect.width(), rect.height(), destBytesPerRow); in getImageData()
322 destBitmap.setPixels(data); in getImageData()
330 context->readPixels(&destBitmap, rect.x(), rect.y(), config8888); in getImageData()