Searched defs:updateChunk (Results 1 - 12 of 12) sorted by relevance

/external/webkit/Source/WebKit2/WebProcess/WebPage/mac/
H A DChunkedUpdateDrawingAreaMac.cpp41 void ChunkedUpdateDrawingArea::paintIntoUpdateChunk(UpdateChunk* updateChunk) argument
48 RetainPtr<CGContextRef> bitmapContext(AdoptCF, CGBitmapContextCreate(updateChunk->data(), updateChunk->rect().width(), updateChunk->rect().height(), 8, updateChunk->rect().width() * 4, colorSpace.get(), kCGImageAlphaPremultipliedFirst | kCGBitmapByteOrder32Host));
51 CGContextTranslateCTM(bitmapContext.get(), 0.0, updateChunk->rect().height());
56 graphicsContext.translate(-updateChunk->rect().x(), -updateChunk->rect().y());
58 m_webPage->drawRect(graphicsContext, updateChunk->rect());
/external/webkit/Source/WebKit2/WebProcess/WebPage/qt/
H A DChunkedUpdateDrawingAreaQt.cpp40 void ChunkedUpdateDrawingArea::paintIntoUpdateChunk(UpdateChunk* updateChunk) argument
42 QImage image(updateChunk->createImage());
46 graphicsContext.translate(-updateChunk->rect().x(), -updateChunk->rect().y());
48 m_webPage->drawRect(graphicsContext, updateChunk->rect());
H A DTiledDrawingAreaQt.cpp42 void TiledDrawingArea::paintIntoUpdateChunk(UpdateChunk* updateChunk, float scale) argument
44 IntRect tileRect = updateChunk->rect();
45 QImage image(updateChunk->createImage());
/external/webkit/Source/WebKit2/WebProcess/WebPage/gtk/
H A DChunkedUpdateDrawingAreaGtk.cpp42 void ChunkedUpdateDrawingArea::paintIntoUpdateChunk(UpdateChunk* updateChunk) argument
44 ASSERT(!updateChunk->isEmpty());
46 RefPtr<cairo_surface_t> image = updateChunk->createImage();
50 IntRect rect = updateChunk->rect();
52 m_webPage->drawRect(gc, updateChunk->rect());
/external/webkit/Source/WebKit2/WebProcess/WebPage/win/
H A DChunkedUpdateDrawingAreaWin.cpp38 void ChunkedUpdateDrawingArea::paintIntoUpdateChunk(UpdateChunk* updateChunk) argument
43 BitmapInfo bmp = BitmapInfo::createBottomUp(updateChunk->rect().size());
44 OwnPtr<HBITMAP> hbmp(::CreateDIBSection(0, &bmp, DIB_RGB_COLORS, &bits, updateChunk->memory(), 0));
52 RECT rect = updateChunk->rect();
54 gc.translate(-updateChunk->rect().x(), -updateChunk->rect().y());
56 m_webPage->drawRect(gc, updateChunk->rect());
/external/webkit/Source/WebKit2/UIProcess/gtk/
H A DChunkedUpdateDrawingAreaProxyGtk.cpp76 void ChunkedUpdateDrawingAreaProxy::drawUpdateChunkIntoBackingStore(UpdateChunk* updateChunk) argument
80 RefPtr<cairo_surface_t> pixmap(updateChunk->createImage());
84 const IntRect& updateChunkRect = updateChunk->rect();
/external/webkit/Source/WebKit2/UIProcess/qt/
H A DChunkedUpdateDrawingAreaProxyQt.cpp69 void ChunkedUpdateDrawingAreaProxy::drawUpdateChunkIntoBackingStore(UpdateChunk* updateChunk) argument
73 QImage image(updateChunk->createImage());
74 const IntRect& updateChunkRect = updateChunk->rect();
H A DTiledDrawingAreaTileQt.cpp120 void TiledDrawingAreaTile::updateFromChunk(UpdateChunk* updateChunk, float) argument
122 QImage image(updateChunk->createImage());
123 const IntRect& updateChunkRect = updateChunk->rect();
/external/webkit/Source/WebKit2/Shared/win/
H A DUpdateChunk.cpp62 bool UpdateChunk::decode(CoreIPC::ArgumentDecoder* decoder, UpdateChunk& updateChunk) argument
67 updateChunk.m_rect = rect;
73 updateChunk.m_bitmapSharedMemory = reinterpret_cast<HANDLE>(bitmapSharedMmemory);
/external/webkit/Source/WebKit2/UIProcess/win/
H A DChunkedUpdateDrawingAreaProxyWin.cpp78 void ChunkedUpdateDrawingAreaProxy::drawUpdateChunkIntoBackingStore(UpdateChunk* updateChunk) argument
85 BitmapInfo bitmapInfo = BitmapInfo::createBottomUp(updateChunk->rect().size());
89 BOOL result = ::DuplicateHandle(m_webView->page()->process()->processIdentifier(), updateChunk->memory(),
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();
/external/webkit/Source/WebKit2/UIProcess/
H A DChunkedUpdateDrawingAreaProxy.cpp108 void ChunkedUpdateDrawingAreaProxy::didSetSize(UpdateChunk* updateChunk) argument
113 IntSize viewSize = updateChunk->rect().size();
119 if (!updateChunk->isEmpty())
120 drawUpdateChunkIntoBackingStore(updateChunk);
123 void ChunkedUpdateDrawingAreaProxy::deprecatedUpdate(UpdateChunk* updateChunk) argument
132 drawUpdateChunkIntoBackingStore(updateChunk);
155 UpdateChunk updateChunk; local
156 if (!arguments->decode(updateChunk))
159 deprecatedUpdate(&updateChunk);
163 UpdateChunk updateChunk; local
[all...]
H A DTiledDrawingAreaProxy.cpp129 UpdateChunk updateChunk; local
132 if (!arguments->decode(CoreIPC::Out(tileID, updateChunk, scale, pendingUpdateCount)))
138 tile->updateFromChunk(&updateChunk, scale);
183 UpdateChunk updateChunk; local
190 if (!arguments->decode(CoreIPC::Out(tileID, updateChunk, scale, pendingUpdateCount)))
195 tile->updateFromChunk(&updateChunk, scale);

Completed in 276 milliseconds