Home
last modified time | relevance | path

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

1234

/external/webkit/Source/WebCore/platform/graphics/texmap/
DGraphicsLayerTextureMapper.cpp28 : GraphicsLayer(client) in GraphicsLayerTextureMapper()
52 GraphicsLayer::setName(name); in setName()
79 void GraphicsLayerTextureMapper::setParent(GraphicsLayer* layer) in setParent()
82 GraphicsLayer::setParent(layer); in setParent()
87 bool GraphicsLayerTextureMapper::setChildren(const Vector<GraphicsLayer*>& children) in setChildren()
90 return GraphicsLayer::setChildren(children); in setChildren()
95 void GraphicsLayerTextureMapper::addChild(GraphicsLayer* layer) in addChild()
98 GraphicsLayer::addChild(layer); in addChild()
103 void GraphicsLayerTextureMapper::addChildAtIndex(GraphicsLayer* layer, int index) in addChildAtIndex()
105 GraphicsLayer::addChildAtIndex(layer, index); in addChildAtIndex()
[all …]
DGraphicsLayerTextureMapper.h39 class GraphicsLayerTextureMapper : public GraphicsLayer {
49 virtual void setParent(GraphicsLayer* layer);
50 virtual bool setChildren(const Vector<GraphicsLayer*>&);
51 virtual void addChild(GraphicsLayer*);
52 virtual void addChildAtIndex(GraphicsLayer*, int index);
53 virtual void addChildAbove(GraphicsLayer* layer, GraphicsLayer* sibling);
54 virtual void addChildBelow(GraphicsLayer* layer, GraphicsLayer* sibling);
55 virtual bool replaceChild(GraphicsLayer* oldChild, GraphicsLayer* newChild);
57 virtual void setMaskLayer(GraphicsLayer* layer);
72 virtual void setReplicatedByLayer(GraphicsLayer*);
[all …]
DTextureMapperNode.h144 …TextureFromContent(TextureMapper* textureMapper, const IntRect& visibleRect, GraphicsLayer* layer);
152 static TextureMapperNode* toTextureMapperNode(GraphicsLayer*);
211 GraphicsLayer::CompositingCoordinatesOrientation geoOrientation;
212 GraphicsLayer::CompositingCoordinatesOrientation contentsOrientation;
/external/webkit/Source/WebCore/platform/graphics/
DGraphicsLayer.cpp64 GraphicsLayer::GraphicsLayer(GraphicsLayerClient* client) in GraphicsLayer() function in WebCore::GraphicsLayer
87 GraphicsLayer::~GraphicsLayer() in ~GraphicsLayer()
93 bool GraphicsLayer::hasAncestor(GraphicsLayer* ancestor) const in hasAncestor()
95 for (GraphicsLayer* curr = parent(); curr; curr = curr->parent()) { in hasAncestor()
103 bool GraphicsLayer::setChildren(const Vector<GraphicsLayer*>& newChildren) in setChildren()
118 void GraphicsLayer::addChild(GraphicsLayer* childLayer) in addChild()
129 void GraphicsLayer::addChildAtIndex(GraphicsLayer* childLayer, int index) in addChildAtIndex()
140 void GraphicsLayer::addChildBelow(GraphicsLayer* childLayer, GraphicsLayer* sibling) in addChildBelow()
160 void GraphicsLayer::addChildAbove(GraphicsLayer* childLayer, GraphicsLayer* sibling) in addChildAbove()
180 bool GraphicsLayer::replaceChild(GraphicsLayer* oldChild, GraphicsLayer* newChild) in replaceChild()
[all …]
DGraphicsLayer.h187 class GraphicsLayer {
188 WTF_MAKE_NONCOPYABLE(GraphicsLayer); WTF_MAKE_FAST_ALLOCATED;
190 static PassOwnPtr<GraphicsLayer> create(GraphicsLayerClient*);
192 virtual ~GraphicsLayer();
200 GraphicsLayer* parent() const { return m_parent; }; in parent()
201 void setParent(GraphicsLayer* layer) { m_parent = layer; } // Internal use only. in setParent()
204 bool hasAncestor(GraphicsLayer*) const;
206 const Vector<GraphicsLayer*>& children() const { return m_children; } in children()
208 virtual bool setChildren(const Vector<GraphicsLayer*>&);
211 virtual void addChild(GraphicsLayer*);
[all …]
DGraphicsLayerClient.h34 class GraphicsLayer; variable
68 virtual void notifyAnimationStarted(const GraphicsLayer*, double time) = 0;
72 virtual void notifySyncRequired(const GraphicsLayer*) = 0;
74 …virtual void paintContents(const GraphicsLayer*, GraphicsContext&, GraphicsLayerPaintingPhase, con…
/external/webkit/Source/WebCore/rendering/
DRenderLayerBacking.h77 GraphicsLayer* graphicsLayer() const { return m_graphicsLayer.get(); } in graphicsLayer()
81 GraphicsLayer* clippingLayer() const { return m_clippingLayer.get(); } in clippingLayer()
85 GraphicsLayer* ancestorClippingLayer() const { return m_ancestorClippingLayer.get(); } in ancestorClippingLayer()
88 GraphicsLayer* foregroundLayer() const { return m_foregroundLayer.get(); } in foregroundLayer()
92GraphicsLayer* parentForSublayers() const { return m_clippingLayer ? m_clippingLayer.get() : m_gra… in parentForSublayers()
93GraphicsLayer* childForSuperlayers() const { return m_ancestorClippingLayer ? m_ancestorClippingLa… in childForSuperlayers()
129 virtual void notifyAnimationStarted(const GraphicsLayer*, double startTime);
130 virtual void notifySyncRequired(const GraphicsLayer*);
132 …virtual void paintContents(const GraphicsLayer*, GraphicsContext&, GraphicsLayerPaintingPhase, con…
144GraphicsLayer* layerForHorizontalScrollbar() const { return m_layerForHorizontalScrollbar.get(); } in layerForHorizontalScrollbar()
[all …]
DRenderLayerCompositor.h37 class GraphicsLayer; variable
136 GraphicsLayer* rootPlatformLayer() const;
187GraphicsLayer* layerForHorizontalScrollbar() const { return m_layerForHorizontalScrollbar.get(); } in layerForHorizontalScrollbar()
188 GraphicsLayer* layerForVerticalScrollbar() const { return m_layerForVerticalScrollbar.get(); } in layerForVerticalScrollbar()
189 GraphicsLayer* layerForScrollCorner() const { return m_layerForScrollCorner.get(); } in layerForScrollCorner()
193 virtual void notifyAnimationStarted(const GraphicsLayer*, double) { } in notifyAnimationStarted() argument
194 virtual void notifySyncRequired(const GraphicsLayer*) { scheduleLayerFlush(); } in notifySyncRequired() argument
195 …virtual void paintContents(const GraphicsLayer*, GraphicsContext&, GraphicsLayerPaintingPhase, con…
229 …gLayerTree(RenderLayer* layer, const struct CompositingState&, Vector<GraphicsLayer*>& childGraphi…
275 OwnPtr<GraphicsLayer> m_rootPlatformLayer;
[all …]
/external/webkit/Source/WebCore/platform/graphics/chromium/
DGraphicsLayerChromium.cpp87 PassOwnPtr<GraphicsLayer> GraphicsLayer::create(GraphicsLayerClient* client) in create()
93 : GraphicsLayer(client) in GraphicsLayerChromium()
116 GraphicsLayer::setName(name); in setName()
130 bool GraphicsLayerChromium::setChildren(const Vector<GraphicsLayer*>& children) in setChildren()
132 bool childrenChanged = GraphicsLayer::setChildren(children); in setChildren()
141 void GraphicsLayerChromium::addChild(GraphicsLayer* childLayer) in addChild()
143 GraphicsLayer::addChild(childLayer); in addChild()
147 void GraphicsLayerChromium::addChildAtIndex(GraphicsLayer* childLayer, int index) in addChildAtIndex()
149 GraphicsLayer::addChildAtIndex(childLayer, index); in addChildAtIndex()
153 void GraphicsLayerChromium::addChildBelow(GraphicsLayer* childLayer, GraphicsLayer* sibling) in addChildBelow()
[all …]
DGraphicsLayerChromium.h43 class GraphicsLayerChromium : public GraphicsLayer {
50 virtual bool setChildren(const Vector<GraphicsLayer*>&);
51 virtual void addChild(GraphicsLayer*);
52 virtual void addChildAtIndex(GraphicsLayer*, int index);
53 virtual void addChildAbove(GraphicsLayer*, GraphicsLayer* sibling);
54 virtual void addChildBelow(GraphicsLayer*, GraphicsLayer* sibling);
55 virtual bool replaceChild(GraphicsLayer* oldChild, GraphicsLayer* newChild);
70 virtual void setMaskLayer(GraphicsLayer*);
78 virtual void setReplicatedByLayer(GraphicsLayer*);
/external/webkit/Source/WebCore/platform/graphics/win/
DGraphicsLayerCACF.cpp120 PassOwnPtr<GraphicsLayer> GraphicsLayer::create(GraphicsLayerClient* client) in create()
126 : GraphicsLayer(client) in GraphicsLayerCACF()
151 GraphicsLayer::setName(longName); in setName()
156 bool GraphicsLayerCACF::setChildren(const Vector<GraphicsLayer*>& children) in setChildren()
158 bool childrenChanged = GraphicsLayer::setChildren(children); in setChildren()
167 void GraphicsLayerCACF::addChild(GraphicsLayer* childLayer) in addChild()
169 GraphicsLayer::addChild(childLayer); in addChild()
173 void GraphicsLayerCACF::addChildAtIndex(GraphicsLayer* childLayer, int index) in addChildAtIndex()
175 GraphicsLayer::addChildAtIndex(childLayer, index); in addChildAtIndex()
179 void GraphicsLayerCACF::addChildBelow(GraphicsLayer* childLayer, GraphicsLayer* sibling) in addChildBelow()
[all …]
DGraphicsLayerCACF.h39 class GraphicsLayerCACF : public GraphicsLayer {
47 virtual bool setChildren(const Vector<GraphicsLayer*>&);
48 virtual void addChild(GraphicsLayer *layer);
49 virtual void addChildAtIndex(GraphicsLayer *layer, int index);
50 virtual void addChildAbove(GraphicsLayer *layer, GraphicsLayer *sibling);
51 virtual void addChildBelow(GraphicsLayer *layer, GraphicsLayer *sibling);
52 virtual bool replaceChild(GraphicsLayer *oldChild, GraphicsLayer *newChild);
DWebLayer.h35 class GraphicsLayer; variable
39 static PassRefPtr<WKCACFLayer> create(LayerType layerType, GraphicsLayer* owner) in create()
47 WebLayer(LayerType layerType, GraphicsLayer* owner) in WebLayer()
55 GraphicsLayer* m_owner;
DMediaPlayerPrivateQuickTimeWin.h69 …virtual void paintContents(const GraphicsLayer*, GraphicsContext&, GraphicsLayerPaintingPhase, con…
70 virtual void notifyAnimationStarted(const GraphicsLayer*, double time) { } in notifyAnimationStarted() argument
71 virtual void notifySyncRequired(const GraphicsLayer*) { } in notifySyncRequired() argument
169 OwnPtr<GraphicsLayer> m_qtVideoLayer;
/external/webkit/Source/WebCore/platform/graphics/qt/
DGraphicsLayerQt.h32 class GraphicsLayerQt : public GraphicsLayer {
43 virtual void setParent(GraphicsLayer* layer);
45 virtual bool setChildren(const Vector<GraphicsLayer*>&);
46 virtual void addChild(GraphicsLayer*);
47 virtual void addChildAtIndex(GraphicsLayer*, int index);
48 virtual void addChildAbove(GraphicsLayer* layer, GraphicsLayer* sibling);
49 virtual void addChildBelow(GraphicsLayer* layer, GraphicsLayer* sibling);
50 virtual bool replaceChild(GraphicsLayer* oldChild, GraphicsLayer* newChild);
52 virtual void setMaskLayer(GraphicsLayer* layer);
DGraphicsLayerQt.cpp280 GraphicsLayer* maskLayer;
288 GraphicsLayer::CompositingCoordinatesOrientation contentsOrientation;
705 const Vector<GraphicsLayer*> newChildrenVector = (m_layer->children()); in flushChanges()
946 : GraphicsLayer(client) in GraphicsLayerQt()
956 PassOwnPtr<GraphicsLayer> GraphicsLayer::create(GraphicsLayerClient* client) in create()
996 GraphicsLayer::setName(name); in setName()
1001 void GraphicsLayerQt::setParent(GraphicsLayer* layer) in setParent()
1004 GraphicsLayer::setParent(layer); in setParent()
1009 bool GraphicsLayerQt::setChildren(const Vector<GraphicsLayer*>& children) in setChildren()
1012 return GraphicsLayer::setChildren(children); in setChildren()
[all …]
/external/webkit/Source/WebCore/platform/graphics/android/
DGraphicsLayerAndroid.h44 class GraphicsLayerAndroid : public GraphicsLayer, PicturePainter {
61 virtual bool setChildren(const Vector<GraphicsLayer*>&);
62 virtual void addChild(GraphicsLayer*);
63 virtual void addChildAtIndex(GraphicsLayer*, int index);
64 virtual void addChildAbove(GraphicsLayer* layer, GraphicsLayer* sibling);
65 virtual void addChildBelow(GraphicsLayer* layer, GraphicsLayer* sibling);
66 virtual bool replaceChild(GraphicsLayer* oldChild, GraphicsLayer* newChild);
67 virtual void setReplicatedLayer(GraphicsLayer* layer);
81 virtual void setMaskLayer(GraphicsLayer*);
DGraphicsLayerAndroid.cpp90 PassOwnPtr<GraphicsLayer> GraphicsLayer::create(GraphicsLayerClient* client) in create()
101 GraphicsLayer(client), in GraphicsLayerAndroid()
136 GraphicsLayer::setName(name); in setName()
145 bool GraphicsLayerAndroid::setChildren(const Vector<GraphicsLayer*>& children) in setChildren()
147 bool childrenChanged = GraphicsLayer::setChildren(children); in setChildren()
156 void GraphicsLayerAndroid::addChild(GraphicsLayer* childLayer) in addChild()
162 GraphicsLayer::addChild(childLayer); in addChild()
167 void GraphicsLayerAndroid::addChildAtIndex(GraphicsLayer* childLayer, int index) in addChildAtIndex()
170 GraphicsLayer::addChildAtIndex(childLayer, index); in addChildAtIndex()
175 void GraphicsLayerAndroid::addChildBelow(GraphicsLayer* childLayer, GraphicsLayer* sibling) in addChildBelow()
[all …]
/external/webkit/Source/WebKit2/WebProcess/WebPage/ca/
DLayerTreeHostCA.h43 WebCore::GraphicsLayer* rootLayer() const { return m_rootLayer.get(); } in rootLayer()
60 virtual void setRootCompositingLayer(WebCore::GraphicsLayer*);
70 virtual void notifyAnimationStarted(const WebCore::GraphicsLayer*, double time);
71 virtual void notifySyncRequired(const WebCore::GraphicsLayer*);
72 …virtual void paintContents(const WebCore::GraphicsLayer*, WebCore::GraphicsContext&, WebCore::Grap…
95 OwnPtr<WebCore::GraphicsLayer> m_rootLayer;
98 OwnPtr<WebCore::GraphicsLayer> m_nonCompositedContentLayer;
101 OwnPtr<WebCore::GraphicsLayer> m_pageOverlayLayer;
DLayerTreeHostCA.cpp53 m_rootLayer = GraphicsLayer::create(this); in initialize()
61 m_nonCompositedContentLayer = GraphicsLayer::create(this); in initialize()
98 void LayerTreeHostCA::setRootCompositingLayer(GraphicsLayer* graphicsLayer) in setRootCompositingLayer()
165 void LayerTreeHostCA::notifyAnimationStarted(const WebCore::GraphicsLayer*, double time) in notifyAnimationStarted() argument
169 void LayerTreeHostCA::notifySyncRequired(const WebCore::GraphicsLayer*) in notifySyncRequired() argument
173 void LayerTreeHostCA::paintContents(const GraphicsLayer* graphicsLayer, GraphicsContext& graphicsCo… in paintContents()
235 m_pageOverlayLayer = GraphicsLayer::create(this); in createPageOverlayLayer()
/external/webkit/Source/WebCore/platform/graphics/ca/
DGraphicsLayerCA.h44 class GraphicsLayerCA : public GraphicsLayer, public PlatformCALayerClient {
62 virtual bool setChildren(const Vector<GraphicsLayer*>&);
63 virtual void addChild(GraphicsLayer*);
64 virtual void addChildAtIndex(GraphicsLayer*, int index);
65 virtual void addChildAbove(GraphicsLayer* layer, GraphicsLayer* sibling);
66 virtual void addChildBelow(GraphicsLayer* layer, GraphicsLayer* sibling);
67 virtual bool replaceChild(GraphicsLayer* oldChild, GraphicsLayer* newChild);
71 virtual void setMaskLayer(GraphicsLayer*);
72 virtual void setReplicatedLayer(GraphicsLayer*);
196 virtual void setReplicatedByLayer(GraphicsLayer*);
[all …]
DGraphicsLayerCA.cpp247 PassOwnPtr<GraphicsLayer> GraphicsLayer::create(GraphicsLayerClient* client) in create()
253 : GraphicsLayer(client) in GraphicsLayerCA()
291 GraphicsLayer::setName(longName); in setName()
300 bool GraphicsLayerCA::setChildren(const Vector<GraphicsLayer*>& children) in setChildren()
302 bool childrenChanged = GraphicsLayer::setChildren(children); in setChildren()
309 void GraphicsLayerCA::addChild(GraphicsLayer* childLayer) in addChild()
311 GraphicsLayer::addChild(childLayer); in addChild()
315 void GraphicsLayerCA::addChildAtIndex(GraphicsLayer* childLayer, int index) in addChildAtIndex()
317 GraphicsLayer::addChildAtIndex(childLayer, index); in addChildAtIndex()
321 void GraphicsLayerCA::addChildBelow(GraphicsLayer* childLayer, GraphicsLayer* sibling) in addChildBelow()
[all …]
/external/webkit/Source/WebKit2/WebProcess/FullScreen/mac/
DWebFullScreenManagerMac.h46 virtual void setRootFullScreenLayer(WebCore::GraphicsLayer*);
55 OwnPtr<WebCore::GraphicsLayer> m_rootLayer;
56 WebCore::GraphicsLayer* m_fullScreenRootLayer;
/external/webkit/Source/WebCore/platform/
DScrollableArea.h41 class GraphicsLayer; variable
153 virtual GraphicsLayer* layerForHorizontalScrollbar() const { return 0; } in layerForHorizontalScrollbar()
154 virtual GraphicsLayer* layerForVerticalScrollbar() const { return 0; } in layerForVerticalScrollbar()
155 virtual GraphicsLayer* layerForScrollCorner() const { return 0; } in layerForScrollCorner()
/external/webkit/Source/WebCore/platform/graphics/mac/
DWebGLLayer.h34 class GraphicsLayer; variable
40 WebCore::GraphicsLayer* m_layerOwner;

1234