Lines Matching refs:updateChunk
29 #include "UpdateChunk.h"
78 void ChunkedUpdateDrawingAreaProxy::drawUpdateChunkIntoBackingStore(UpdateChunk* updateChunk)
85 BitmapInfo bitmapInfo = BitmapInfo::createBottomUp(updateChunk->rect().size());
89 BOOL result = ::DuplicateHandle(m_webView->page()->process()->processIdentifier(), updateChunk->memory(),
96 // BitBlt from the UpdateChunk to the backing store.
97 ::BitBlt(m_backingStoreDC.get(), updateChunk->rect().x(), updateChunk->rect().y(), updateChunk->rect().width(), updateChunk->rect().height(), updateChunkBitmapDC.get(), 0, 0, SRCCOPY);
103 RECT rect = updateChunk->rect();