HomeSort by relevance Sort by last modified time
    Searched refs:updateChunk (Results 1 - 16 of 16) sorted by null

  /external/webkit/Source/WebKit2/WebProcess/WebPage/qt/
ChunkedUpdateDrawingAreaQt.cpp 30 #include "UpdateChunk.h"
40 void ChunkedUpdateDrawingArea::paintIntoUpdateChunk(UpdateChunk* updateChunk)
42 QImage image(updateChunk->createImage());
46 graphicsContext.translate(-updateChunk->rect().x(), -updateChunk->rect().y());
48 m_webPage->drawRect(graphicsContext, updateChunk->rect());
TiledDrawingAreaQt.cpp 31 #include "UpdateChunk.h"
42 void TiledDrawingArea::paintIntoUpdateChunk(UpdateChunk* updateChunk, float scale)
44 IntRect tileRect = updateChunk->rect();
45 QImage image(updateChunk->createImage());
  /external/webkit/Source/WebKit2/WebProcess/WebPage/mac/
ChunkedUpdateDrawingAreaMac.cpp 29 #include "UpdateChunk.h"
41 void ChunkedUpdateDrawingArea::paintIntoUpdateChunk(UpdateChunk* updateChunk)
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())
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/gtk/
ChunkedUpdateDrawingAreaGtk.cpp 32 #include "UpdateChunk.h"
42 void ChunkedUpdateDrawingArea::paintIntoUpdateChunk(UpdateChunk* updateChunk)
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/
ChunkedUpdateDrawingAreaWin.cpp 29 #include "UpdateChunk.h"
38 void ChunkedUpdateDrawingArea::paintIntoUpdateChunk(UpdateChunk* updateChunk)
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/
ChunkedUpdateDrawingAreaProxy.cpp 33 #include "UpdateChunk.h"
108 void ChunkedUpdateDrawingAreaProxy::didSetSize(UpdateChunk* updateChunk)
113 IntSize viewSize = updateChunk->rect().size();
119 if (!updateChunk->isEmpty())
120 drawUpdateChunkIntoBackingStore(updateChunk);
123 void ChunkedUpdateDrawingAreaProxy::deprecatedUpdate(UpdateChunk* updateChunk)
132 drawUpdateChunkIntoBackingStore(updateChunk);
155 UpdateChunk updateChunk
    [all...]
TiledDrawingAreaTile.h 44 class UpdateChunk;
66 void updateFromChunk(UpdateChunk* updateChunk, float);
TiledDrawingAreaProxy.cpp 33 #include "UpdateChunk.h"
129 UpdateChunk updateChunk;
132 if (!arguments->decode(CoreIPC::Out(tileID, updateChunk, scale, pendingUpdateCount)))
138 tile->updateFromChunk(&updateChunk, scale);
163 UpdateChunk chunk;
183 UpdateChunk updateChunk;
190 if (!arguments->decode(CoreIPC::Out(tileID, updateChunk, scale, pendingUpdateCount)))
195 tile->updateFromChunk(&updateChunk, scale)
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/win/
ChunkedUpdateDrawingAreaProxyWin.cpp 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)
    [all...]
  /external/webkit/Source/WebKit2/Shared/win/
UpdateChunk.cpp 27 #include "UpdateChunk.h"
37 UpdateChunk::UpdateChunk()
42 UpdateChunk::UpdateChunk(const IntRect& rect)
50 UpdateChunk::UpdateChunk(const IntRect& rect, HANDLE bitmapSharedMemory)
56 void UpdateChunk::encode(CoreIPC::ArgumentEncoder* encoder) const
62 bool UpdateChunk::decode(CoreIPC::ArgumentDecoder* decoder, UpdateChunk& updateChunk
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/qt/
ChunkedUpdateDrawingAreaProxyQt.cpp 32 #include "UpdateChunk.h"
69 void ChunkedUpdateDrawingAreaProxy::drawUpdateChunkIntoBackingStore(UpdateChunk* updateChunk)
73 QImage image(updateChunk->createImage());
74 const IntRect& updateChunkRect = updateChunk->rect();
TiledDrawingAreaTileQt.cpp 35 #include "UpdateChunk.h"
120 void TiledDrawingAreaTile::updateFromChunk(UpdateChunk* updateChunk, float)
122 QImage image(updateChunk->createImage());
123 const IntRect& updateChunkRect = updateChunk->rect();
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
ChunkedUpdateDrawingArea.cpp 32 #include "UpdateChunk.h"
83 // Create a new UpdateChunk and paint into it.
84 UpdateChunk updateChunk(dirtyRect);
85 paintIntoUpdateChunk(&updateChunk);
87 WebProcess::shared().connection()->deprecatedSend(DrawingAreaProxyLegacyMessage::Update, m_webPage->pageID(), CoreIPC::In(updateChunk));
130 WebProcess::shared().connection()->deprecatedSend(DrawingAreaProxyLegacyMessage::DidSetSize, m_webPage->pageID(), CoreIPC::In(UpdateChunk()));
134 // Create a new UpdateChunk and paint into it.
135 UpdateChunk updateChunk(IntRect(0, 0, viewSize.width(), viewSize.height()))
    [all...]
TiledDrawingArea.cpp 34 #include "UpdateChunk.h"
141 UpdateChunk updateChunk(dirtyRect);
142 paintIntoUpdateChunk(&updateChunk, scale);
145 WebProcess::shared().connection()->deprecatedSend(DrawingAreaProxyLegacyMessage::TileUpdated, m_webPage->pageID(), CoreIPC::In(tileID, updateChunk, scale, pendingUpdateCount));
222 UpdateChunk updateChunk(IntRect(IntPoint(contentsRect.x() * targetScale, contentsRect.y() * targetScale), targetSize));
223 paintIntoUpdateChunk(&updateChunk, targetScale);
225 WebProcess::shared().connection()->deprecatedSend(DrawingAreaProxyLegacyMessage::SnapshotTaken, m_webPage->pageID(), CoreIPC::In(updateChunk));
  /external/webkit/Source/WebKit2/UIProcess/gtk/
ChunkedUpdateDrawingAreaProxyGtk.cpp 32 #include "UpdateChunk.h"
76 void ChunkedUpdateDrawingAreaProxy::drawUpdateChunkIntoBackingStore(UpdateChunk* updateChunk)
80 RefPtr<cairo_surface_t> pixmap(updateChunk->createImage());
84 const IntRect& updateChunkRect = updateChunk->rect();
  /external/webkit/Source/WebKit2/UIProcess/mac/
ChunkedUpdateDrawingAreaProxyMac.mm 31 #import "UpdateChunk.h"
86 void ChunkedUpdateDrawingAreaProxy::drawUpdateChunkIntoBackingStore(UpdateChunk* updateChunk)
90 RetainPtr<CGImageRef> image(updateChunk->createImage());
91 IntRect updateChunkRect = updateChunk->rect();

Completed in 4298 milliseconds