/external/webkit/Source/WebCore/platform/graphics/texmap/ |
D | GraphicsLayerTextureMapper.cpp | 28 : 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 …]
|
D | GraphicsLayerTextureMapper.h | 39 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 …]
|
D | TextureMapperNode.h | 144 …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/ |
D | GraphicsLayer.cpp | 64 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 …]
|
D | GraphicsLayer.h | 187 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 …]
|
D | GraphicsLayerClient.h | 34 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/ |
D | RenderLayerBacking.h | 77 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() 92 …GraphicsLayer* parentForSublayers() const { return m_clippingLayer ? m_clippingLayer.get() : m_gra… in parentForSublayers() 93 …GraphicsLayer* 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… 144 … GraphicsLayer* layerForHorizontalScrollbar() const { return m_layerForHorizontalScrollbar.get(); } in layerForHorizontalScrollbar() [all …]
|
D | RenderLayerCompositor.h | 37 class GraphicsLayer; variable 136 GraphicsLayer* rootPlatformLayer() const; 187 … GraphicsLayer* 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/ |
D | GraphicsLayerChromium.cpp | 87 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 …]
|
D | GraphicsLayerChromium.h | 43 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/ |
D | GraphicsLayerCACF.cpp | 120 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 …]
|
D | GraphicsLayerCACF.h | 39 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);
|
D | WebLayer.h | 35 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;
|
D | MediaPlayerPrivateQuickTimeWin.h | 69 …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/ |
D | GraphicsLayerQt.h | 32 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);
|
D | GraphicsLayerQt.cpp | 280 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/ |
D | GraphicsLayerAndroid.h | 44 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*);
|
D | GraphicsLayerAndroid.cpp | 90 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/ |
D | LayerTreeHostCA.h | 43 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;
|
D | LayerTreeHostCA.cpp | 53 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/ |
D | GraphicsLayerCA.h | 44 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 …]
|
D | GraphicsLayerCA.cpp | 247 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/ |
D | WebFullScreenManagerMac.h | 46 virtual void setRootFullScreenLayer(WebCore::GraphicsLayer*); 55 OwnPtr<WebCore::GraphicsLayer> m_rootLayer; 56 WebCore::GraphicsLayer* m_fullScreenRootLayer;
|
/external/webkit/Source/WebCore/platform/ |
D | ScrollableArea.h | 41 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/ |
D | WebGLLayer.h | 34 class GraphicsLayer; variable 40 WebCore::GraphicsLayer* m_layerOwner;
|