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

/external/webkit/Source/WebCore/rendering/
H A DRenderLayer.cpp1485 IntRect exposeRect = IntRect(rect.x() + scrollXOffset(), rect.y() + scrollYOffset(), rect.width(), rect.height()); local
1486 IntRect r = getRectToExpose(layerBounds, exposeRect, alignX, alignY);
1545 IntRect RenderLayer::getRectToExpose(const IntRect &visibleRect, const IntRect &exposeRect, const ScrollAlignment& alignX, const ScrollAlignment& alignY) argument
1549 IntRect exposeRectX(exposeRect.x(), visibleRect.y(), exposeRect.width(), visibleRect.height());
1551 if (intersectWidth == exposeRect.width() || intersectWidth >= MIN_INTERSECT_FOR_REVEAL)
1566 // If we're trying to align to the closest edge, and the exposeRect is further right
1568 if (scrollX == alignToClosestEdge && exposeRect.maxX() > visibleRect.maxX() && exposeRect.width() < visibleRect.width())
1576 x = exposeRect
[all...]

Completed in 243 milliseconds