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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
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...]
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...]
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...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
FrameView.cpp     [all...]

Completed in 50 milliseconds