HomeSort by relevance Sort by last modified time
    Searched refs:rootLayer (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayer.h 355 void beginTransparencyLayers(GraphicsContext*, const RenderLayer* rootLayer, const LayoutRect& paintDirtyRect, PaintBehavior);
461 void updateLayerPositionsAfterLayout(const RenderLayer* rootLayer, UpdateLayerPositionsFlags);
618 : rootLayer(inRootLayer)
624 const RenderLayer* rootLayer;
632 // |rootLayer}. It also computes our background and foreground clip rects
655 bool intersectsDamageRect(const LayoutRect& layerBounds, const LayoutRect& damageRect, const RenderLayer* rootLayer, const LayoutPoint* offsetFromRoot = 0) const;
670 LayoutRect boundingBox(const RenderLayer* rootLayer, CalculateLayerBoundsFlags = 0, const LayoutPoint* offsetFromRoot = 0) const;
    [all...]
RenderLayer.cpp 309 const RenderLayer* rootLayer = 0;
310 for (const RenderLayer* parentLayer = parent(); parentLayer; rootLayer = parentLayer, parentLayer = parentLayer->parent()) {
315 ASSERT(rootLayer == root());
318 parent()->convertToLayerCoords(rootLayer, offset);
322 void RenderLayer::updateLayerPositionsAfterLayout(const RenderLayer* rootLayer, UpdateLayerPositionsFlags flags)
325 if (this != rootLayer)
    [all...]
RenderTreeAsText.cpp 70 static void writeLayers(TextStream&, const RenderLayer* rootLayer, RenderLayer*, const LayoutRect& paintDirtyRect, int indent = 0, RenderAsTextBehavior = RenderAsTextBehaviorNormal);
618 static void writeRenderNamedFlowThreads(TextStream& ts, RenderView* renderView, const RenderLayer* rootLayer,
636 writeLayers(ts, rootLayer, layer, paintRect, indent + 2, behavior);
650 static void writeLayers(TextStream& ts, const RenderLayer* rootLayer, RenderLayer* l,
655 if (rootLayer == l) {
656 paintDirtyRect.setWidth(max<LayoutUnit>(paintDirtyRect.width(), rootLayer->renderBox()->layoutOverflowRect().maxX()));
657 paintDirtyRect.setHeight(max<LayoutUnit>(paintDirtyRect.height(), rootLayer->renderBox()->layoutOverflowRect().maxY()));
664 l->calculateRects(RenderLayer::ClipRectsContext(rootLayer, 0, TemporaryClipRects), paintDirtyRect, layerBounds, damageRect, clipRectToApply, outlineRect);
669 bool shouldPaint = (behavior & RenderAsTextShowAllLayers) ? true : l->intersectsDamageRect(layerBounds, damageRect.rect(), rootLayer);
683 writeLayers(ts, rootLayer, negList->at(i), paintDirtyRect, currIndent, behavior)
    [all...]
RenderLayerCompositor.cpp 307 GraphicsLayer* rootLayer = rootGraphicsLayer();
308 if (!rootLayer)
316 if (rootLayer->visibleRectChangeRequiresFlush(visibleRect)) {
322 bool RenderLayerCompositor::hasAnyAdditionalCompositedLayers(const RenderLayer* rootLayer) const
324 return m_compositedLayerCount > (rootLayer->isComposited() ? 1 : 0);
    [all...]
RenderLayerCompositor.h 255 bool hasAnyAdditionalCompositedLayers(const RenderLayer* rootLayer) const;
RenderLayerBacking.cpp 331 RenderLayer* rootLayer = view->layer();
339 if (m_owningLayer != rootLayer)
340 clippingBounds.intersect(m_owningLayer->backgroundClipRect(RenderLayer::ClipRectsContext(rootLayer, 0, AbsoluteClipRects)).rect()); // FIXME: Incorrect for CSS regions.
343 m_owningLayer->convertToLayerCoords(rootLayer, delta);
560 // for a compositing layer, rootLayer is the layer itself.
    [all...]
RenderBoxModelObject.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
FrameView.cpp     [all...]

Completed in 111 milliseconds