Home
last modified time | relevance | path

Searched refs:updateChunk (Results 1 – 16 of 16) sorted by relevance

/external/webkit/Source/WebKit2/WebProcess/WebPage/mac/
DChunkedUpdateDrawingAreaMac.cpp41 void ChunkedUpdateDrawingArea::paintIntoUpdateChunk(UpdateChunk* updateChunk) in paintIntoUpdateChunk() argument
48 …optCF, CGBitmapContextCreate(updateChunk->data(), updateChunk->rect().width(), updateChunk->rect()… in paintIntoUpdateChunk()
51 CGContextTranslateCTM(bitmapContext.get(), 0.0, updateChunk->rect().height()); in paintIntoUpdateChunk()
56 graphicsContext.translate(-updateChunk->rect().x(), -updateChunk->rect().y()); in paintIntoUpdateChunk()
58 m_webPage->drawRect(graphicsContext, updateChunk->rect()); in paintIntoUpdateChunk()
/external/webkit/Source/WebKit2/UIProcess/
DChunkedUpdateDrawingAreaProxy.cpp108 void ChunkedUpdateDrawingAreaProxy::didSetSize(UpdateChunk* updateChunk) in didSetSize() argument
113 IntSize viewSize = updateChunk->rect().size(); in didSetSize()
119 if (!updateChunk->isEmpty()) in didSetSize()
120 drawUpdateChunkIntoBackingStore(updateChunk); in didSetSize()
123 void ChunkedUpdateDrawingAreaProxy::deprecatedUpdate(UpdateChunk* updateChunk) in deprecatedUpdate() argument
132 drawUpdateChunkIntoBackingStore(updateChunk); in deprecatedUpdate()
155 UpdateChunk updateChunk; in didReceiveMessage() local
156 if (!arguments->decode(updateChunk)) in didReceiveMessage()
159 deprecatedUpdate(&updateChunk); in didReceiveMessage()
163 UpdateChunk updateChunk; in didReceiveMessage() local
[all …]
DTiledDrawingAreaProxy.cpp129 UpdateChunk updateChunk; in didReceiveMessage() local
132 if (!arguments->decode(CoreIPC::Out(tileID, updateChunk, scale, pendingUpdateCount))) in didReceiveMessage()
138 tile->updateFromChunk(&updateChunk, scale); in didReceiveMessage()
183 UpdateChunk updateChunk; in waitUntilUpdatesComplete() local
190 if (!arguments->decode(CoreIPC::Out(tileID, updateChunk, scale, pendingUpdateCount))) in waitUntilUpdatesComplete()
195 tile->updateFromChunk(&updateChunk, scale); in waitUntilUpdatesComplete()
DTiledDrawingAreaTile.h66 void updateFromChunk(UpdateChunk* updateChunk, float);
/external/webkit/Source/WebKit2/WebProcess/WebPage/win/
DChunkedUpdateDrawingAreaWin.cpp38 void ChunkedUpdateDrawingArea::paintIntoUpdateChunk(UpdateChunk* updateChunk) in paintIntoUpdateChunk() argument
43 BitmapInfo bmp = BitmapInfo::createBottomUp(updateChunk->rect().size()); in paintIntoUpdateChunk()
44 …OwnPtr<HBITMAP> hbmp(::CreateDIBSection(0, &bmp, DIB_RGB_COLORS, &bits, updateChunk->memory(), 0)); in paintIntoUpdateChunk()
52 RECT rect = updateChunk->rect(); in paintIntoUpdateChunk()
54 gc.translate(-updateChunk->rect().x(), -updateChunk->rect().y()); in paintIntoUpdateChunk()
56 m_webPage->drawRect(gc, updateChunk->rect()); in paintIntoUpdateChunk()
/external/webkit/Source/WebKit2/UIProcess/win/
DChunkedUpdateDrawingAreaProxyWin.cpp78 void ChunkedUpdateDrawingAreaProxy::drawUpdateChunkIntoBackingStore(UpdateChunk* updateChunk) in drawUpdateChunkIntoBackingStore() argument
85 BitmapInfo bitmapInfo = BitmapInfo::createBottomUp(updateChunk->rect().size()); in drawUpdateChunkIntoBackingStore()
89 …BOOL result = ::DuplicateHandle(m_webView->page()->process()->processIdentifier(), updateChunk->me… in drawUpdateChunkIntoBackingStore()
97 …BitBlt(m_backingStoreDC.get(), updateChunk->rect().x(), updateChunk->rect().y(), updateChunk->rect… in drawUpdateChunkIntoBackingStore()
103 RECT rect = updateChunk->rect(); in drawUpdateChunkIntoBackingStore()
/external/webkit/Source/WebKit2/WebProcess/WebPage/qt/
DChunkedUpdateDrawingAreaQt.cpp40 void ChunkedUpdateDrawingArea::paintIntoUpdateChunk(UpdateChunk* updateChunk) in paintIntoUpdateChunk() argument
42 QImage image(updateChunk->createImage()); in paintIntoUpdateChunk()
46 graphicsContext.translate(-updateChunk->rect().x(), -updateChunk->rect().y()); in paintIntoUpdateChunk()
48 m_webPage->drawRect(graphicsContext, updateChunk->rect()); in paintIntoUpdateChunk()
DTiledDrawingAreaQt.cpp42 void TiledDrawingArea::paintIntoUpdateChunk(UpdateChunk* updateChunk, float scale) in paintIntoUpdateChunk() argument
44 IntRect tileRect = updateChunk->rect(); in paintIntoUpdateChunk()
45 QImage image(updateChunk->createImage()); in paintIntoUpdateChunk()
/external/webkit/Source/WebKit2/WebProcess/WebPage/gtk/
DChunkedUpdateDrawingAreaGtk.cpp42 void ChunkedUpdateDrawingArea::paintIntoUpdateChunk(UpdateChunk* updateChunk) in paintIntoUpdateChunk() argument
44 ASSERT(!updateChunk->isEmpty()); in paintIntoUpdateChunk()
46 RefPtr<cairo_surface_t> image = updateChunk->createImage(); in paintIntoUpdateChunk()
50 IntRect rect = updateChunk->rect(); in paintIntoUpdateChunk()
52 m_webPage->drawRect(gc, updateChunk->rect()); in paintIntoUpdateChunk()
/external/webkit/Source/WebKit2/WebProcess/WebPage/
DChunkedUpdateDrawingArea.cpp84 UpdateChunk updateChunk(dirtyRect); in display() local
85 paintIntoUpdateChunk(&updateChunk); in display()
87 …precatedSend(DrawingAreaProxyLegacyMessage::Update, m_webPage->pageID(), CoreIPC::In(updateChunk)); in display()
135 UpdateChunk updateChunk(IntRect(0, 0, viewSize.width(), viewSize.height())); in setSize() local
136 paintIntoUpdateChunk(&updateChunk); in setSize()
140 …atedSend(DrawingAreaProxyLegacyMessage::DidSetSize, m_webPage->pageID(), CoreIPC::In(updateChunk)); in setSize()
DTiledDrawingArea.cpp141 UpdateChunk updateChunk(dirtyRect); in updateTile() local
142 paintIntoUpdateChunk(&updateChunk, scale); in updateTile()
145 …xyLegacyMessage::TileUpdated, m_webPage->pageID(), CoreIPC::In(tileID, updateChunk, scale, pending… in updateTile()
222 …UpdateChunk updateChunk(IntRect(IntPoint(contentsRect.x() * targetScale, contentsRect.y() * target… in didReceiveMessage() local
223 paintIntoUpdateChunk(&updateChunk, targetScale); in didReceiveMessage()
225 …dSend(DrawingAreaProxyLegacyMessage::SnapshotTaken, m_webPage->pageID(), CoreIPC::In(updateChunk)); in didReceiveMessage()
/external/webkit/Source/WebKit2/UIProcess/qt/
DChunkedUpdateDrawingAreaProxyQt.cpp69 void ChunkedUpdateDrawingAreaProxy::drawUpdateChunkIntoBackingStore(UpdateChunk* updateChunk) in drawUpdateChunkIntoBackingStore() argument
73 QImage image(updateChunk->createImage()); in drawUpdateChunkIntoBackingStore()
74 const IntRect& updateChunkRect = updateChunk->rect(); in drawUpdateChunkIntoBackingStore()
DTiledDrawingAreaTileQt.cpp120 void TiledDrawingAreaTile::updateFromChunk(UpdateChunk* updateChunk, float) in updateFromChunk() argument
122 QImage image(updateChunk->createImage()); in updateFromChunk()
123 const IntRect& updateChunkRect = updateChunk->rect(); in updateFromChunk()
/external/webkit/Source/WebKit2/Shared/win/
DUpdateChunk.cpp62 bool UpdateChunk::decode(CoreIPC::ArgumentDecoder* decoder, UpdateChunk& updateChunk) in decode() argument
67 updateChunk.m_rect = rect; in decode()
73 updateChunk.m_bitmapSharedMemory = reinterpret_cast<HANDLE>(bitmapSharedMmemory); in decode()
/external/webkit/Source/WebKit2/UIProcess/gtk/
DChunkedUpdateDrawingAreaProxyGtk.cpp76 void ChunkedUpdateDrawingAreaProxy::drawUpdateChunkIntoBackingStore(UpdateChunk* updateChunk) in drawUpdateChunkIntoBackingStore() argument
80 RefPtr<cairo_surface_t> pixmap(updateChunk->createImage()); in drawUpdateChunkIntoBackingStore()
84 const IntRect& updateChunkRect = updateChunk->rect(); in drawUpdateChunkIntoBackingStore()
/external/webkit/Source/WebKit2/UIProcess/mac/
DChunkedUpdateDrawingAreaProxyMac.mm86 void ChunkedUpdateDrawingAreaProxy::drawUpdateChunkIntoBackingStore(UpdateChunk* updateChunk)
90 RetainPtr<CGImageRef> image(updateChunk->createImage());
91 IntRect updateChunkRect = updateChunk->rect();