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

  /external/webkit/WebCore/rendering/
RenderTreeAsText.cpp 459 const IntRect& layerBounds, const IntRect& backgroundClipRect, const IntRect& clipRect, const IntRect& outlineClipRect,
464 ts << "layer " << layerBounds;
466 if (!layerBounds.isEmpty()) {
467 if (!backgroundClipRect.contains(layerBounds))
469 if (!clipRect.contains(layerBounds))
471 if (!outlineClipRect.contains(layerBounds))
510 IntRect layerBounds, damageRect, clipRectToApply, outlineRect;
511 l->calculateRects(rootLayer, paintDirtyRect, layerBounds, damageRect, clipRectToApply, outlineRect, true);
517 bool shouldPaint = (behavior & RenderAsTextShowAllLayers) ? true : l->intersectsDamageRect(layerBounds, damageRect, rootLayer);
521 write(ts, *l, layerBounds, damageRect, clipRectToApply, outlineRect, LayerPaintPhaseBackground, indent, behavior)
    [all...]
RenderLayerBacking.cpp 153 IntRect layerBounds = compositor()->calculateCompositedBounds(m_owningLayer, m_owningLayer);
158 if (layerBounds.isEmpty() && hasNonZeroTransformOrigin(renderer())) {
159 layerBounds.setWidth(1);
160 layerBounds.setHeight(1);
165 setCompositedBounds(layerBounds);
321 IntRect layerBounds = IntRect(deltaX, deltaY, borderBox.width(), borderBox.height());
326 FloatPoint3D anchor(relativeCompositingBounds.width() != 0.0f ? ((layerBounds.x() - relativeCompositingBounds.x()) + transformOrigin.x()) / relativeCompositingBounds.width() : 0.5f,
327 relativeCompositingBounds.height() != 0.0f ? ((layerBounds.y() - relativeCompositingBounds.y()) + transformOrigin.y()) / relativeCompositingBounds.height() : 0.5f,
374 FloatRect layerBounds = compositedBounds();
376 reflectionBacking->graphicsLayer()->setReplicatedLayerPosition(FloatPoint() + (layerBounds.location() - reflectionLayerBounds.location()))
    [all...]
RenderLayer.cpp     [all...]
  /external/webkit/WebCore/platform/graphics/win/
WKCACFLayer.cpp 215 CGRect layerBounds = bounds();
218 CGContextTranslateCTM(context, 0, -layerBounds.size.height);
237 CGContextFillRect(context, layerBounds);
248 CGRect aBounds = layerBounds;
571 CGRect layerBounds = bounds();
576 layerBounds.origin.x, layerBounds.origin.y, layerBounds.size.width, layerBounds.size.height,

Completed in 147 milliseconds