Home
last modified time | relevance | path

Searched refs:GraphicsLayer (Results 1 – 25 of 78) sorted by relevance

1234

/external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
DCompositedLayerMapping.h101 GraphicsLayer* mainGraphicsLayer() const { return m_graphicsLayer.get(); } in mainGraphicsLayer()
105 GraphicsLayer* clippingLayer() const { return m_childContainmentLayer.get(); } in clippingLayer()
109 GraphicsLayer* ancestorClippingLayer() const { return m_ancestorClippingLayer.get(); } in ancestorClippingLayer()
112 GraphicsLayer* foregroundLayer() const { return m_foregroundLayer.get(); } in foregroundLayer()
114 GraphicsLayer* backgroundLayer() const { return m_backgroundLayer.get(); } in backgroundLayer()
118 GraphicsLayer* scrollingLayer() const { return m_scrollingLayer.get(); } in scrollingLayer()
119 GraphicsLayer* scrollingContentsLayer() const { return m_scrollingContentsLayer.get(); } in scrollingContentsLayer()
120GraphicsLayer* scrollingBlockSelectionLayer() const { return m_scrollingBlockSelectionLayer.get();… in scrollingBlockSelectionLayer()
123 GraphicsLayer* maskLayer() const { return m_maskLayer.get(); } in maskLayer()
126 GraphicsLayer* childClippingMaskLayer() const { return m_childClippingMaskLayer.get(); } in childClippingMaskLayer()
[all …]
DRenderLayerCompositor.h37 class GraphicsLayer; variable
114 GraphicsLayer* fixedRootBackgroundLayer() const;
124 GraphicsLayer* rootGraphicsLayer() const;
125 GraphicsLayer* scrollLayer() const;
126 GraphicsLayer* containerLayer() const;
130 GraphicsLayer* ensureRootTransformLayer();
159GraphicsLayer* layerForHorizontalScrollbar() const { return m_layerForHorizontalScrollbar.get(); } in layerForHorizontalScrollbar()
160 GraphicsLayer* layerForVerticalScrollbar() const { return m_layerForVerticalScrollbar.get(); } in layerForVerticalScrollbar()
161 GraphicsLayer* layerForScrollCorner() const { return m_layerForScrollCorner.get(); } in layerForScrollCorner()
166 virtual String debugName(const GraphicsLayer*) OVERRIDE;
[all …]
DRenderLayerCompositor.cpp272 GraphicsLayer* backgroundLayer = fixedRootBackgroundLayer(); in applyOverlayFullscreenVideoAdjustment()
279 GraphicsLayer* videoLayer = video->compositedLayerMapping()->mainGraphicsLayer(); in applyOverlayFullscreenVideoAdjustment()
291 if (GraphicsLayer* backgroundLayer = fixedRootBackgroundLayer()) in applyOverlayFullscreenVideoAdjustment()
611 if (GraphicsLayer* backgroundLayer = fixedRootBackgroundLayer()) in rootFixedBackgroundsChanged()
632 GraphicsLayer* rootLayer = m_rootContentLayer.get(); in layerTreeAsText()
671 GraphicsLayer* hostingLayer = compositedLayerMapping->parentForSublayers(); in parentFrameContentLayers()
672 GraphicsLayer* rootLayer = innerCompositor->rootGraphicsLayer(); in parentFrameContentLayers()
714 GraphicsLayer* RenderLayerCompositor::rootGraphicsLayer() const in rootGraphicsLayer()
721 GraphicsLayer* RenderLayerCompositor::scrollLayer() const in scrollLayer()
726 GraphicsLayer* RenderLayerCompositor::containerLayer() const in containerLayer()
[all …]
DGraphicsLayerTreeBuilder.cpp103 …if (GraphicsLayer* overflowControlLayer = currentCompositedLayerMapping->layerForHorizontalScrollb… in rebuild()
108 …if (GraphicsLayer* overflowControlLayer = currentCompositedLayerMapping->layerForVerticalScrollbar… in rebuild()
113 … if (GraphicsLayer* overflowControlLayer = currentCompositedLayerMapping->layerForScrollCorner()) { in rebuild()
DCompositedLayerMapping.cpp206 PassOwnPtr<GraphicsLayer> CompositedLayerMapping::createGraphicsLayer(CompositingReasons reasons) in createGraphicsLayer()
212 OwnPtr<GraphicsLayer> graphicsLayer = GraphicsLayer::create(graphicsLayerFactory, this); in createGraphicsLayer()
450GraphicsLayer* reflectionLayer = m_owningLayer.reflectionInfo()->reflectionLayer()->compositedLaye… in updateGraphicsLayerConfiguration()
528 …Vector<GraphicsLayerPaintInfo>& layers, GraphicsLayer* squashingLayer, LayoutPoint* offsetFromTran… in updateSquashingLayerGeometry()
861 …m_scrollingContentsLayer->setOffsetFromRenderer(scrollingContentsOffset, GraphicsLayer::DontSetNee… in updateScrollingLayerGeometry()
974 GraphicsLayer* superLayer = m_graphicsLayer.get(); in updateInternalHierarchy()
1051 …setOffsetFromRenderer(toIntSize(blockSelectionGapsBounds.location()), GraphicsLayer::SetNeedsDispl… in updateScrollingBlockSelection()
1096 if (GraphicsLayer* childTransformLayer = layerForChildrenTransform()) { in updateChildrenTransform()
1175 bool CompositedLayerMapping::toggleScrollbarLayerIfNeeded(OwnPtr<GraphicsLayer>& layer, bool needsL… in toggleScrollbarLayerIfNeeded()
1202 if (GraphicsLayer* layer = layerForHorizontalScrollbar()) { in positionOverflowControlsLayers()
[all …]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DGraphicsLayer.h62 class GraphicsLayer; variable
79 typedef Vector<GraphicsLayer*, 64> GraphicsLayerVector;
84 class PLATFORM_EXPORT GraphicsLayer : public GraphicsContextPainter, public blink::WebAnimationDele…
85 WTF_MAKE_NONCOPYABLE(GraphicsLayer); WTF_MAKE_FAST_ALLOCATED;
87 static PassOwnPtr<GraphicsLayer> create(GraphicsLayerFactory*, GraphicsLayerClient*);
89 virtual ~GraphicsLayer();
102 GraphicsLayer* parent() const { return m_parent; }; in parent()
103 void setParent(GraphicsLayer*); // Internal use only.
105 const Vector<GraphicsLayer*>& children() const { return m_children; } in children()
110 void addChild(GraphicsLayer*);
[all …]
DGraphicsLayer.cpp69 typedef HashMap<const GraphicsLayer*, Vector<FloatRect> > RepaintMap;
76 PassOwnPtr<GraphicsLayer> GraphicsLayer::create(GraphicsLayerFactory* factory, GraphicsLayerClient*… in create()
81 GraphicsLayer::GraphicsLayer(GraphicsLayerClient* client) in GraphicsLayer() function in WebCore::GraphicsLayer
120 GraphicsLayer::~GraphicsLayer() in ~GraphicsLayer()
144 void GraphicsLayer::setParent(GraphicsLayer* layer) in setParent()
152 bool GraphicsLayer::hasAncestor(GraphicsLayer* ancestor) const in hasAncestor()
154 for (GraphicsLayer* curr = parent(); curr; curr = curr->parent()) { in hasAncestor()
164 bool GraphicsLayer::setChildren(const GraphicsLayerVector& newChildren) in setChildren()
181 void GraphicsLayer::addChildInternal(GraphicsLayer* childLayer) in addChildInternal()
195 void GraphicsLayer::addChild(GraphicsLayer* childLayer) in addChild()
[all …]
DImageLayerChromiumTest.cpp41 virtual void notifyAnimationStarted(const GraphicsLayer*, double monotonicTime) OVERRIDE { } in notifyAnimationStarted() argument
42 …virtual void paintContents(const GraphicsLayer*, GraphicsContext&, GraphicsLayerPaintingPhase, con… in paintContents() argument
43 virtual String debugName(const GraphicsLayer*) OVERRIDE { return String(); } in debugName() argument
102 class GraphicsLayerForTesting : public GraphicsLayer {
105 : GraphicsLayer(client) { }; in GraphicsLayerForTesting()
107 virtual blink::WebLayer* contentsLayer() const { return GraphicsLayer::contentsLayer(); } in contentsLayer()
DGraphicsLayerClient.h36 class GraphicsLayer; variable
67 virtual void notifyAnimationStarted(const GraphicsLayer*, double monotonicTime) = 0;
69 …virtual void paintContents(const GraphicsLayer*, GraphicsContext&, GraphicsLayerPaintingPhase, con…
72 virtual String debugName(const GraphicsLayer*) = 0;
DGraphicsLayerTest.cpp51 virtual void notifyAnimationStarted(const GraphicsLayer*, double monotonicTime) OVERRIDE { } in notifyAnimationStarted() argument
52 …virtual void paintContents(const GraphicsLayer*, GraphicsContext&, GraphicsLayerPaintingPhase, con… in paintContents() argument
53 virtual String debugName(const GraphicsLayer*) OVERRIDE { return String(); } in debugName() argument
56 class GraphicsLayerForTesting : public GraphicsLayer {
59 : GraphicsLayer(client) { }; in GraphicsLayerForTesting()
61 virtual blink::WebLayer* contentsLayer() const { return GraphicsLayer::contentsLayer(); } in contentsLayer()
DGraphicsLayerFactory.h34 class GraphicsLayer; variable
41 virtual PassOwnPtr<GraphicsLayer> createGraphicsLayer(GraphicsLayerClient*) = 0;
/external/chromium_org/third_party/WebKit/Source/core/frame/
DPinchViewport.h53 class GraphicsLayer; variable
69 void attachToLayerTree(GraphicsLayer*, GraphicsLayerFactory*);
70 GraphicsLayer* rootGraphicsLayer() in rootGraphicsLayer()
74 GraphicsLayer* containerLayer() in containerLayer()
132 virtual GraphicsLayer* layerForContainer() const OVERRIDE;
133 virtual GraphicsLayer* layerForScrolling() const OVERRIDE;
134 virtual GraphicsLayer* layerForHorizontalScrollbar() const OVERRIDE;
135 virtual GraphicsLayer* layerForVerticalScrollbar() const OVERRIDE;
138 virtual void notifyAnimationStarted(const GraphicsLayer*, double monotonicTime) OVERRIDE;
139 …virtual void paintContents(const GraphicsLayer*, GraphicsContext&, GraphicsLayerPaintingPhase, con…
[all …]
DPinchViewport.cpp61 using WebCore::GraphicsLayer;
212 void PinchViewport::attachToLayerTree(GraphicsLayer* currentLayerTreeRoot, GraphicsLayerFactory* gr… in attachToLayerTree()
230 m_rootTransformLayer = GraphicsLayer::create(graphicsLayerFactory, this); in attachToLayerTree()
231 m_innerViewportContainerLayer = GraphicsLayer::create(graphicsLayerFactory, this); in attachToLayerTree()
232 m_pageScaleLayer = GraphicsLayer::create(graphicsLayerFactory, this); in attachToLayerTree()
233 m_innerViewportScrollLayer = GraphicsLayer::create(graphicsLayerFactory, this); in attachToLayerTree()
234 m_overlayScrollbarHorizontal = GraphicsLayer::create(graphicsLayerFactory, this); in attachToLayerTree()
235 m_overlayScrollbarVertical = GraphicsLayer::create(graphicsLayerFactory, this); in attachToLayerTree()
282 GraphicsLayer* scrollbarGraphicsLayer = isHorizontal ? in setupScrollbar()
392 GraphicsLayer* PinchViewport::layerForContainer() const in layerForContainer()
[all …]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorLayerTreeAgent.cpp58 inline String idForLayer(const GraphicsLayer* graphicsLayer) in idForLayer()
76 …:Array<TypeBuilder::LayerTree::ScrollRect> > buildScrollRectsForLayer(GraphicsLayer* graphicsLayer) in buildScrollRectsForLayer()
93 static PassRefPtr<TypeBuilder::LayerTree::Layer> buildObjectForLayer(GraphicsLayer* graphicsLayer, … in buildObjectForLayer()
107 GraphicsLayer* parent = graphicsLayer->parent(); in buildObjectForLayer()
191 void InspectorLayerTreeAgent::didPaint(RenderObject*, const GraphicsLayer* graphicsLayer, GraphicsC… in didPaint()
222 GraphicsLayer* graphicsLayer = root->compositedLayerMapping()->childForSuperlayers(); in buildLayerIdToNodeIdMap()
237 void InspectorLayerTreeAgent::gatherGraphicsLayers(GraphicsLayer* root, HashMap<int, int>& layerIdT… in gatherGraphicsLayers()
243 if (GraphicsLayer* replica = root->replicaLayer()) in gatherGraphicsLayers()
261 static GraphicsLayer* findLayerById(GraphicsLayer* root, int layerId) in findLayerById()
266 if (GraphicsLayer* layer = findLayerById(root->replicaLayer(), layerId)) in findLayerById()
[all …]
DInspectorLayerTreeAgent.h65 void willAddPageOverlay(const GraphicsLayer*);
66 void didRemovePageOverlay(const GraphicsLayer*);
70 void didPaint(RenderObject*, const GraphicsLayer*, GraphicsContext*, const LayoutRect&);
92 GraphicsLayer* layerById(ErrorString*, const String& layerId);
97 …void gatherGraphicsLayers(GraphicsLayer*, HashMap<int, int>& layerIdToNodeIdMap, RefPtr<TypeBuilde…
/external/chromium_org/third_party/WebKit/Source/web/
DGraphicsLayerFactoryChromium.cpp45 PassOwnPtr<GraphicsLayer> GraphicsLayerFactoryChromium::createGraphicsLayer(GraphicsLayerClient* cl… in createGraphicsLayer()
47 OwnPtr<GraphicsLayer> layer = adoptPtr(new GraphicsLayer(client)); in createGraphicsLayer()
DPageOverlay.h37 class GraphicsLayer; variable
63 WebCore::GraphicsLayer* graphicsLayer() const { return m_layer.get(); } in graphicsLayer()
72 OwnPtr<WebCore::GraphicsLayer> m_layer;
DPageOverlay.cpp76 virtual void notifyAnimationStarted(const GraphicsLayer*, double monotonicTime) OVERRIDE { } in notifyAnimationStarted() argument
78 …virtual void paintContents(const GraphicsLayer*, GraphicsContext& gc, GraphicsLayerPaintingPhase, … in paintContents() argument
87 virtual String debugName(const GraphicsLayer* graphicsLayer) OVERRIDE in debugName()
120 m_layer = GraphicsLayer::create(m_viewImpl->graphicsLayerFactory(), m_layerClient.get()); in update()
/external/chromium_org/third_party/WebKit/Source/platform/
DOverscrollTheme.h43 virtual void setUpOverhangShadowLayer(GraphicsLayer*);
44 …virtual void updateOverhangShadowLayer(GraphicsLayer* shadowLayer, GraphicsLayer* rootContentLayer…
DOverscrollTheme.cpp46 void OverscrollTheme::setUpOverhangShadowLayer(GraphicsLayer* overhangShadowLayer) in setUpOverhangShadowLayer()
55 void OverscrollTheme::updateOverhangShadowLayer(GraphicsLayer* shadowLayer, GraphicsLayer* rootCont… in updateOverhangShadowLayer()
/external/chromium_org/third_party/WebKit/Source/web/painting/
DContinuousPainter.cpp40 void ContinuousPainter::setNeedsDisplayRecursive(GraphicsLayer* layer, PageOverlayList* pageOverlay… in setNeedsDisplayRecursive()
55 const Vector<GraphicsLayer*>& children = layer->children(); in setNeedsDisplayRecursive()
56 Vector<GraphicsLayer*>::const_iterator it; in setNeedsDisplayRecursive()
DContinuousPainter.h33 class GraphicsLayer; variable
46 static void setNeedsDisplayRecursive(WebCore::GraphicsLayer*, PageOverlayList*);
/external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
DScrollingCoordinator.cpp72 WebLayer* toWebLayer(WebCore::GraphicsLayer* layer) in toWebLayer()
188 void ScrollingCoordinator::setLayerIsContainerForFixedPositionLayers(GraphicsLayer* layer, bool ena… in setLayerIsContainerForFixedPositionLayers()
194 static void clearPositionConstraintExceptForLayer(GraphicsLayer* layer, GraphicsLayer* except) in clearPositionConstraintExceptForLayer()
223 GraphicsLayer* mainLayer = compositedLayerMapping->localRootForOwningLayer(); in updateLayerPositionConstraint()
243 GraphicsLayer::unregisterContentsLayer(scrollbarLayer->layer()); in removeWebScrollbarLayer()
253 GraphicsLayer::registerContentsLayer(scrollbarLayer->layer()); in createScrollbarLayer()
261 GraphicsLayer::registerContentsLayer(scrollbarLayer->layer()); in createSolidColorScrollbarLayer()
265 static void detachScrollbarLayer(GraphicsLayer* scrollbarGraphicsLayer) in detachScrollbarLayer()
273 static void setupScrollbarLayer(GraphicsLayer* scrollbarGraphicsLayer, WebScrollbarLayer* scrollbar… in setupScrollbarLayer()
320 GraphicsLayer* scrollbarGraphicsLayer = orientation == HorizontalScrollbar in scrollableAreaScrollbarLayerDidChange()
[all …]
DScrollingCoordinator.h47 class GraphicsLayer; variable
101 void setLayerIsContainerForFixedPositionLayers(GraphicsLayer*, bool);
106 void updateScrollParentForGraphicsLayer(GraphicsLayer* child, RenderLayer* parent);
107 void updateClipParentForGraphicsLayer(GraphicsLayer* child, RenderLayer* parent);
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
DScrollableArea.h39 class GraphicsLayer; variable
217 virtual GraphicsLayer* layerForContainer() const;
218 virtual GraphicsLayer* layerForScrolling() const { return 0; } in layerForScrolling()
219 virtual GraphicsLayer* layerForHorizontalScrollbar() const { return 0; } in layerForHorizontalScrollbar()
220 virtual GraphicsLayer* layerForVerticalScrollbar() const { return 0; } in layerForVerticalScrollbar()
221 virtual GraphicsLayer* layerForScrollCorner() const { return 0; } in layerForScrollCorner()

1234