Home | History | Annotate | Download | only in rendering

Lines Matching defs:layerBounds

185     IntRect layerBounds = compositor()->calculateCompositedBounds(m_owningLayer, m_owningLayer);
211 layerBounds.intersect(clippingBounds);
217 if (layerBounds.isEmpty() && hasNonZeroTransformOrigin(renderer())) {
218 layerBounds.setWidth(1);
219 layerBounds.setHeight(1);
224 setCompositedBounds(layerBounds);
429 IntRect layerBounds = IntRect(deltaX, deltaY, borderBox.width(), borderBox.height());
434 FloatPoint3D anchor(relativeCompositingBounds.width() != 0.0f ? ((layerBounds.x() - relativeCompositingBounds.x()) + transformOrigin.x()) / relativeCompositingBounds.width() : 0.5f,
435 relativeCompositingBounds.height() != 0.0f ? ((layerBounds.y() - relativeCompositingBounds.y()) + transformOrigin.y()) / relativeCompositingBounds.height() : 0.5f,
481 FloatRect layerBounds = compositedBounds();
483 reflectionBacking->graphicsLayer()->setReplicatedLayerPosition(FloatPoint() + (layerBounds.location() - reflectionLayerBounds.location()));
1099 IntRect layerBounds, damageRect, clipRectToApply, outlineRect;
1100 m_owningLayer->calculateRects(rootLayer, paintDirtyRect, layerBounds, damageRect, clipRectToApply, outlineRect);
1102 int x = layerBounds.x(); // layerBounds is computed relative to rootLayer
1103 int y = layerBounds.y();