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

  /external/skia/tests/
CanvasStateTest.cpp 141 SkRect layerBounds = SkRect::Make(layerRect);
142 canvas.saveLayerAlpha(&layerBounds, 128, flags[j]);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
ClipRect.h 234 layerBounds = bounds;
242 layerBounds.moveBy(offset);
257 LayoutRect layerBounds;
RenderTreeAsText.cpp 506 const LayoutRect& layerBounds, const LayoutRect& backgroundClipRect, const LayoutRect& clipRect, const LayoutRect& outlineClipRect,
509 IntRect adjustedLayoutBounds = pixelSnappedIntRect(layerBounds);
668 LayoutRect layerBounds;
670 layer->calculateRects(ClipRectsContext(rootLayer, 0, TemporaryClipRects), paintDirtyRect, layerBounds, damageRect, clipRectToApply, outlineRect);
675 bool shouldPaint = (behavior & RenderAsTextShowAllLayers) ? true : layer->intersectsDamageRect(layerBounds, damageRect.rect(), rootLayer);
680 write(ts, *layer, layerBounds, damageRect.rect(), clipRectToApply.rect(), outlineRect.rect(), LayerPaintPhaseBackground, indent, behavior);
694 write(ts, *layer, layerBounds, damageRect.rect(), clipRectToApply.rect(), outlineRect.rect(), paintsBackgroundSeparately ? LayerPaintPhaseForeground : LayerPaintPhaseAll, indent, behavior);
    [all...]
CompositedLayerMapping.cpp 350 IntRect layerBounds = compositor()->calculateCompositedBounds(m_owningLayer, m_owningLayer);
372 layerBounds.intersect(pixelSnappedIntRect(clippingBounds));
381 if (layerBounds.isEmpty() && hasNonZeroTransformOrigin(renderer())) {
382 layerBounds.setWidth(1);
383 layerBounds.setHeight(1);
389 setCompositedBounds(layerBounds);
682 IntRect layerBounds = IntRect(delta, borderBox.size());
687 FloatPoint3D anchor(relativeCompositingBounds.width() != 0.0f ? ((layerBounds.x() - relativeCompositingBounds.x()) + transformOrigin.x()) / relativeCompositingBounds.width() : 0.5f,
688 relativeCompositingBounds.height() != 0.0f ? ((layerBounds.y() - relativeCompositingBounds.y()) + transformOrigin.y()) / relativeCompositingBounds.height() : 0.5f,
    [all...]
RenderLayerCompositor.cpp 729 void RenderLayerCompositor::addToOverlapMap(OverlapMap& overlapMap, RenderLayer* layer, IntRect& layerBounds, bool& boundsComputed)
737 layerBounds = enclosingIntRect(overlapMap.geometryMap().absoluteRect(layer->overlapBounds()));
739 if (layerBounds.isEmpty())
740 layerBounds.setSize(IntSize(1, 1));
745 clipRect.intersect(layerBounds);
    [all...]
RenderLayer.cpp     [all...]

Completed in 45 milliseconds