HomeSort by relevance Sort by last modified time
    Searched defs:updateChunkRect (Results 1 - 3 of 3) sorted by null

  /external/webkit/Source/WebKit2/UIProcess/qt/
ChunkedUpdateDrawingAreaProxyQt.cpp 74 const IntRect& updateChunkRect = updateChunk->rect();
77 painter.drawImage(updateChunkRect.location(), image);
79 m_webView->update(QRect(updateChunkRect));
TiledDrawingAreaTileQt.cpp 123 const IntRect& updateChunkRect = updateChunk->rect();
126 qDebug() << "tile updated id=" << ID() << " rect=" << QRect(updateChunkRect);
128 if (updateChunkRect.size() == m_proxy->tileSize()) {
135 IntSize drawPoint = updateChunkRect.location() - m_rect.location();
  /external/webkit/Source/WebKit2/UIProcess/gtk/
ChunkedUpdateDrawingAreaProxyGtk.cpp 84 const IntRect& updateChunkRect = updateChunk->rect();
87 cairo_set_source_surface(cr.get(), pixmap.get(), updateChunkRect.x(), updateChunkRect.y());
90 gtk_widget_queue_draw_area(m_webView->window(), updateChunkRect.x(), updateChunkRect.y(),
91 updateChunkRect.width(), updateChunkRect.height());

Completed in 34 milliseconds