/external/webkit/Source/WebKit2/WebProcess/WebPage/mac/ |
D | ChunkedUpdateDrawingAreaMac.cpp | 41 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/ |
D | ChunkedUpdateDrawingAreaProxy.cpp | 108 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 …]
|
D | TiledDrawingAreaProxy.cpp | 129 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()
|
D | TiledDrawingAreaTile.h | 66 void updateFromChunk(UpdateChunk* updateChunk, float);
|
/external/webkit/Source/WebKit2/WebProcess/WebPage/win/ |
D | ChunkedUpdateDrawingAreaWin.cpp | 38 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/ |
D | ChunkedUpdateDrawingAreaProxyWin.cpp | 78 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/ |
D | ChunkedUpdateDrawingAreaQt.cpp | 40 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()
|
D | TiledDrawingAreaQt.cpp | 42 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/ |
D | ChunkedUpdateDrawingAreaGtk.cpp | 42 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/ |
D | ChunkedUpdateDrawingArea.cpp | 84 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()
|
D | TiledDrawingArea.cpp | 141 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/ |
D | ChunkedUpdateDrawingAreaProxyQt.cpp | 69 void ChunkedUpdateDrawingAreaProxy::drawUpdateChunkIntoBackingStore(UpdateChunk* updateChunk) in drawUpdateChunkIntoBackingStore() argument 73 QImage image(updateChunk->createImage()); in drawUpdateChunkIntoBackingStore() 74 const IntRect& updateChunkRect = updateChunk->rect(); in drawUpdateChunkIntoBackingStore()
|
D | TiledDrawingAreaTileQt.cpp | 120 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/ |
D | UpdateChunk.cpp | 62 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/ |
D | ChunkedUpdateDrawingAreaProxyGtk.cpp | 76 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/ |
D | ChunkedUpdateDrawingAreaProxyMac.mm | 86 void ChunkedUpdateDrawingAreaProxy::drawUpdateChunkIntoBackingStore(UpdateChunk* updateChunk) 90 RetainPtr<CGImageRef> image(updateChunk->createImage()); 91 IntRect updateChunkRect = updateChunk->rect();
|