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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
LayerPaintingInfo.h 78 : rootLayer(inRootLayer)
85 RenderLayer* rootLayer;
87 LayoutRect paintDirtyRect; // relative to rootLayer;
RenderTreeAsText.h 67 static void writeLayers(TextStream&, const RenderLayer* rootLayer, RenderLayer*, const LayoutRect& paintDirtyRect, int indent = 0, RenderAsTextBehavior = RenderAsTextBehaviorNormal);
RenderLayerClipper.h 63 : rootLayer(root)
85 const RenderLayer* const rootLayer;
112 // |rootLayer|. It also computes our background and foreground clip rects
124 // cachedClipRects looks buggy: It doesn't check whether context.rootLayer and entry.root match.
RenderLayerClipper.cpp 74 if (clipRects.fixed() && context.rootLayer->renderer() == view)
107 if (context.rootLayer != entry.root)
126 entry.root = context.rootLayer;
152 if (context.rootLayer != m_renderer.layer() && m_renderer.layer()->parent())
213 bool isClippingRoot = m_renderer.layer() == context.rootLayer;
230 m_renderer.layer()->convertToLayerCoords(context.rootLayer, offset);
281 bool isClippingRoot = m_renderer.layer() == context.rootLayer;
303 // This offset cannot use convertToLayerCoords, because sometimes our rootLayer may be across
306 applyClipRects(context, m_renderer, roundedLayoutPoint(m_renderer.localToContainerPoint(FloatPoint(), context.rootLayer->renderer())), clipRects);
327 if (m_renderer.layer() == context.rootLayer)
    [all...]
RenderLayer.cpp     [all...]
RenderLayer.h 123 void beginTransparencyLayers(GraphicsContext*, const RenderLayer* rootLayer, const LayoutRect& paintDirtyRect, const LayoutSize& subPixelAccumulation, PaintBehavior);
236 bool intersectsDamageRect(const LayoutRect& layerBounds, const LayoutRect& damageRect, const RenderLayer* rootLayer, const LayoutPoint* offsetFromRoot = 0) const;
568 void collectFragments(LayerFragments&, const RenderLayer* rootLayer, const LayoutRect& dirtyRect,
585 RenderLayer* hitTestLayer(RenderLayer* rootLayer, RenderLayer* containerLayer, const HitTestRequest& request, HitTestResult& result,
588 RenderLayer* hitTestLayerByApplyingTransform(RenderLayer* rootLayer, RenderLayer* containerLayer, const HitTestRequest&, HitTestResult&,
591 RenderLayer* hitTestChildren(ChildrenIteration, RenderLayer* rootLayer, const HitTestRequest&, HitTestResult&,
595 RenderLayer* hitTestPaginatedChildLayer(RenderLayer* childLayer, RenderLayer* rootLayer, const HitTestRequest& request, HitTestResult& result,
    [all...]
RenderTreeAsText.cpp 576 void RenderTreeAsText::writeLayers(TextStream& ts, const RenderLayer* rootLayer, RenderLayer* layer,
581 if (rootLayer == layer) {
582 paintDirtyRect.setWidth(max<LayoutUnit>(paintDirtyRect.width(), rootLayer->renderBox()->layoutOverflowRect().maxX()));
583 paintDirtyRect.setHeight(max<LayoutUnit>(paintDirtyRect.height(), rootLayer->renderBox()->layoutOverflowRect().maxY()));
589 layer->clipper().calculateRects(ClipRectsContext(rootLayer, UncachedClipRects), paintDirtyRect, layerBounds, damageRect, clipRectToApply, outlineRect);
592 if (rootLayer == layer)
598 bool shouldPaint = (behavior & RenderAsTextShowAllLayers) ? true : layer->intersectsDamageRect(layerBounds, damageRect.rect(), rootLayer);
613 writeLayers(ts, rootLayer, negList->at(i)->layer(), paintDirtyRect, currIndent, behavior);
627 writeLayers(ts, rootLayer, normalFlowList->at(i)->layer(), paintDirtyRect, currIndent, behavior);
638 writeLayers(ts, rootLayer, posList->at(i)->layer(), paintDirtyRect, currIndent, behavior)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
RenderLayerCompositor.cpp 599 GraphicsLayer* rootLayer = m_rootContentLayer.get();
601 rootLayer = rootGraphicsLayer();
603 String layerTreeText = rootLayer->layerTreeAsText(flags);
639 GraphicsLayer* rootLayer = innerCompositor->rootGraphicsLayer();
640 if (hostingLayer->children().size() != 1 || hostingLayer->children()[0] != rootLayer) {
642 hostingLayer->addChild(rootLayer);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TimelineFrameModel.js 506 var rootLayer = result["active_tree"]["root_layer"];
509 layerTree.setLayers(rootLayer, callback.bind(null, layerTree));
  /external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
ScrollingCoordinator.cpp 508 RenderLayer* rootLayer = mainFrame->contentRenderer()->layer();
510 geometryMap.pushMappingsToAncestor(rootLayer, 0);
513 projectRectsToGraphicsLayerSpaceRecursive(rootLayer, layerRects, graphicsRects, geometryMap, layersWithRects, layerChildFrameMap);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
ChromeClientImpl.cpp 699 void ChromeClientImpl::attachRootGraphicsLayer(GraphicsLayer* rootLayer)
701 m_webView->setRootGraphicsLayer(rootLayer);
  /external/chromium_org/third_party/WebKit/Source/core/frame/
FrameView.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebViewTest.cpp 353 RenderLayer* rootLayer = view->renderView()->layer();
355 LayerPaintingInfo paintingInfo(rootLayer, paintRect, PaintBehaviorNormal, LayoutSize());
356 rootLayer->paintLayerContents(&context, paintingInfo, PaintLayerPaintingCompositingAllPhases);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/paint/
BoxPainter.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/testing/
Internals.cpp     [all...]

Completed in 301 milliseconds