Home | History | Annotate | Download | only in frame

Lines Matching defs:updateRect

1387         IntRect updateRect = pixelSnappedIntRect(layer->repainter().repaintRectIncludingNonCompositingDescendants());
1395 updateRect.moveBy(scrollPosition());
1396 IntRect previousRect = updateRect;
1398 updateRect.unite(previousRect);
1399 layer->renderer()->invalidatePaintUsingContainer(repaintContainer, updateRect, InvalidationScroll);
1402 updateRect = contentsToRootView(updateRect);
1404 updateRect.intersect(rectToScroll);
1405 if (!updateRect.isEmpty())
1406 regionToUpdate.unite(updateRect);
1417 IntRect updateRect = subRectsToUpdate[i];
1418 IntRect scrolledRect = updateRect;
1420 updateRect.unite(scrolledRect);
1422 updateRect = rootViewToContents(updateRect);
1424 renderView()->layer()->repainter().setBackingNeedsRepaintInRect(updateRect);
1428 updateRect.intersect(rectToScroll);
1429 hostWindow()->invalidateContentsAndRootView(updateRect);
1435 void FrameView::scrollContentsSlowPath(const IntRect& updateRect)
1438 IntRect updateRect = visibleContentRect();
1440 renderView()->layer()->repainter().setBackingNeedsRepaintInRect(updateRect);
1452 ScrollView::scrollContentsSlowPath(updateRect);