Home
last modified time | relevance | path

Searched refs:updateChunkRect (Results 1 – 4 of 4) sorted by relevance

/external/webkit/Source/WebKit2/UIProcess/gtk/
DChunkedUpdateDrawingAreaProxyGtk.cpp84 const IntRect& updateChunkRect = updateChunk->rect(); in drawUpdateChunkIntoBackingStore() local
87 cairo_set_source_surface(cr.get(), pixmap.get(), updateChunkRect.x(), updateChunkRect.y()); in drawUpdateChunkIntoBackingStore()
90 gtk_widget_queue_draw_area(m_webView->window(), updateChunkRect.x(), updateChunkRect.y(), in drawUpdateChunkIntoBackingStore()
91 updateChunkRect.width(), updateChunkRect.height()); in drawUpdateChunkIntoBackingStore()
/external/webkit/Source/WebKit2/UIProcess/qt/
DChunkedUpdateDrawingAreaProxyQt.cpp74 const IntRect& updateChunkRect = updateChunk->rect(); in drawUpdateChunkIntoBackingStore() local
77 painter.drawImage(updateChunkRect.location(), image); in drawUpdateChunkIntoBackingStore()
79 m_webView->update(QRect(updateChunkRect)); in drawUpdateChunkIntoBackingStore()
DTiledDrawingAreaTileQt.cpp123 const IntRect& updateChunkRect = updateChunk->rect(); in updateFromChunk() local
126 qDebug() << "tile updated id=" << ID() << " rect=" << QRect(updateChunkRect); in updateFromChunk()
128 if (updateChunkRect.size() == m_proxy->tileSize()) { in updateFromChunk()
135 IntSize drawPoint = updateChunkRect.location() - m_rect.location(); in updateFromChunk()
/external/webkit/Source/WebKit2/UIProcess/mac/
DChunkedUpdateDrawingAreaProxyMac.mm91 IntRect updateChunkRect = updateChunk->rect();
100 … CGContextTranslateCTM(m_bitmapContext.get(), 0, -(updateChunkRect.y() + updateChunkRect.maxY()));
102 CGContextDrawImage(m_bitmapContext.get(), updateChunkRect, image.get());
106 [m_webView setNeedsDisplayInRect:NSRectFromCGRect(updateChunkRect)];