Searched refs:GraphicsLayer (Results 1 - 25 of 82) sorted by relevance

1234

/external/webkit/Source/WebCore/platform/graphics/texmap/
H A DGraphicsLayerTextureMapper.cpp28 : GraphicsLayer(client)
52 GraphicsLayer::setName(name);
59 /* \reimp (GraphicsLayer.h): The current size might change, thus we need to update the whole display.
67 /* \reimp (GraphicsLayer.h)
77 /* \reimp (GraphicsLayer.h)
79 void GraphicsLayerTextureMapper::setParent(GraphicsLayer* layer)
82 GraphicsLayer::setParent(layer);
85 /* \reimp (GraphicsLayer.h)
87 bool GraphicsLayerTextureMapper::setChildren(const Vector<GraphicsLayer*>& children)
90 return GraphicsLayer
[all...]
H A DGraphicsLayerTextureMapper.h24 #include "GraphicsLayer.h"
39 class GraphicsLayerTextureMapper : public GraphicsLayer {
46 // reimps from GraphicsLayer.h
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* laye
[all...]
/external/webkit/Source/WebCore/platform/graphics/win/
H A DWebLayer.h35 class GraphicsLayer;
39 static PassRefPtr<WKCACFLayer> create(LayerType layerType, GraphicsLayer* owner)
47 WebLayer(LayerType layerType, GraphicsLayer* owner)
55 GraphicsLayer* m_owner;
H A DGraphicsLayerCACF.h31 #include "GraphicsLayer.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 *oldChil
[all...]
H A DGraphicsLayerCACF.cpp120 PassOwnPtr<GraphicsLayer> GraphicsLayer::create(GraphicsLayerClient* client)
126 : GraphicsLayer(client)
150 String longName = String::format("CALayer(%p) GraphicsLayer(%p) ", m_layer.get(), this) + name;
151 GraphicsLayer::setName(longName);
156 bool GraphicsLayerCACF::setChildren(const Vector<GraphicsLayer*>& children)
158 bool childrenChanged = GraphicsLayer::setChildren(children);
159 // FIXME: GraphicsLayer::setChildren calls addChild() for each sublayer, which
167 void GraphicsLayerCACF::addChild(GraphicsLayer* childLayer)
169 GraphicsLayer
[all...]
H A DMediaPlayerPrivateQuickTimeWin.h69 virtual void paintContents(const GraphicsLayer*, GraphicsContext&, GraphicsLayerPaintingPhase, const IntRect& inClip);
70 virtual void notifyAnimationStarted(const GraphicsLayer*, double time) { } argument
71 virtual void notifySyncRequired(const GraphicsLayer*) { } argument
169 OwnPtr<GraphicsLayer> m_qtVideoLayer;
H A DWebTiledLayer.h37 static PassRefPtr<WebTiledLayer> create(const CGSize& tileSize, GraphicsLayer* owner);
45 WebTiledLayer(const CGSize& tileSize, GraphicsLayer* owner);
/external/webkit/Source/WebKit2/WebProcess/WebPage/ca/
H A DLayerTreeHostCA.h43 WebCore::GraphicsLayer* rootLayer() const { return m_rootLayer.get(); }
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::GraphicsLayerPaintingPhase, const WebCore::IntRect& clipRect);
95 OwnPtr<WebCore::GraphicsLayer> m_rootLayer;
98 OwnPtr<WebCore::GraphicsLayer> m_nonCompositedContentLayer;
101 OwnPtr<WebCore::GraphicsLayer> m_pageOverlayLayer;
H A DLayerTreeHostCA.cpp53 m_rootLayer = GraphicsLayer::create(this);
61 m_nonCompositedContentLayer = GraphicsLayer::create(this);
98 void LayerTreeHostCA::setRootCompositingLayer(GraphicsLayer* graphicsLayer)
165 void LayerTreeHostCA::notifyAnimationStarted(const WebCore::GraphicsLayer*, double time)
169 void LayerTreeHostCA::notifySyncRequired(const WebCore::GraphicsLayer*)
173 void LayerTreeHostCA::paintContents(const GraphicsLayer* graphicsLayer, GraphicsContext& graphicsContext, GraphicsLayerPaintingPhase, const IntRect& clipRect)
235 m_pageOverlayLayer = GraphicsLayer::create(this);
/external/webkit/Source/WebCore/rendering/
H A DRenderLayerBacking.h33 #include "GraphicsLayer.h"
77 GraphicsLayer* graphicsLayer() const { return m_graphicsLayer.get(); }
81 GraphicsLayer* clippingLayer() const { return m_clippingLayer.get(); }
85 GraphicsLayer* ancestorClippingLayer() const { return m_ancestorClippingLayer.get(); }
88 GraphicsLayer* foregroundLayer() const { return m_foregroundLayer.get(); }
92 GraphicsLayer* parentForSublayers() const { return m_clippingLayer ? m_clippingLayer.get() : m_graphicsLayer.get(); }
93 GraphicsLayer* childForSuperlayers() const { return m_ancestorClippingLayer ? m_ancestorClippingLayer.get() : m_graphicsLayer.get(); }
96 // their content is rendered via callbacks from GraphicsLayer. However, the document
97 // layer is special, because it has a GraphicsLayer to act as a container for the GraphicsLayers
129 virtual void notifyAnimationStarted(const GraphicsLayer*, doubl
[all...]
H A DRenderLayerCompositor.h37 class GraphicsLayer;
93 // flushPendingLayerChanges() flushes the entire GraphicsLayer tree, which can cross frame boundaries.
136 GraphicsLayer* rootPlatformLayer() const;
187 GraphicsLayer* layerForHorizontalScrollbar() const { return m_layerForHorizontalScrollbar.get(); }
188 GraphicsLayer* layerForVerticalScrollbar() const { return m_layerForVerticalScrollbar.get(); }
189 GraphicsLayer* layerForScrollCorner() const { return m_layerForScrollCorner.get(); }
193 virtual void notifyAnimationStarted(const GraphicsLayer*, double) { } argument
194 virtual void notifySyncRequired(const GraphicsLayer*) { scheduleLayerFlush(); } argument
195 virtual void paintContents(const GraphicsLayer*, GraphicsContext&, GraphicsLayerPaintingPhase, const IntRect&);
229 void rebuildCompositingLayerTree(RenderLayer* layer, const struct CompositingState&, Vector<GraphicsLayer*>
[all...]
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DGraphicsLayerChromium.h37 #include "GraphicsLayer.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* oldChil
[all...]
H A DGraphicsLayerChromium.cpp87 PassOwnPtr<GraphicsLayer> GraphicsLayer::create(GraphicsLayerClient* client)
93 : GraphicsLayer(client)
115 String name = String::format("GraphicsLayerChromium(%p) GraphicsLayer(%p) ", m_layer.get(), this) + inName;
116 GraphicsLayer::setName(name);
130 bool GraphicsLayerChromium::setChildren(const Vector<GraphicsLayer*>& children)
132 bool childrenChanged = GraphicsLayer::setChildren(children);
133 // FIXME: GraphicsLayer::setChildren calls addChild() for each sublayer, which
141 void GraphicsLayerChromium::addChild(GraphicsLayer* childLayer)
143 GraphicsLayer
[all...]
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DGraphicsLayerQt.h23 #include "GraphicsLayer.h"
32 class GraphicsLayerQt : public GraphicsLayer {
39 // reimps from GraphicsLayer.h
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* laye
[all...]
/external/webkit/Source/WebCore/platform/graphics/
H A DGraphicsLayer.cpp30 #include "GraphicsLayer.h"
64 GraphicsLayer::GraphicsLayer(GraphicsLayerClient* client) function in class:WebCore::GraphicsLayer
87 GraphicsLayer::~GraphicsLayer()
93 bool GraphicsLayer::hasAncestor(GraphicsLayer* ancestor) const
95 for (GraphicsLayer* curr = parent(); curr; curr = curr->parent()) {
103 bool GraphicsLayer::setChildren(const Vector<GraphicsLayer*>
[all...]
H A DGraphicsLayerClient.h34 class GraphicsLayer;
68 virtual void notifyAnimationStarted(const GraphicsLayer*, double time) = 0;
72 virtual void notifySyncRequired(const GraphicsLayer*) = 0;
74 virtual void paintContents(const GraphicsLayer*, GraphicsContext&, GraphicsLayerPaintingPhase, const IntRect& inClip) = 0;
H A DGraphicsLayer.h100 // represent values for properties being animated via the GraphicsLayer,
184 // GraphicsLayer is an abstraction for a rendering surface with backing store,
187 class GraphicsLayer { class in namespace:WebCore
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; };
201 void setParent(GraphicsLayer* layer) { m_parent = layer; } // Internal use only.
204 bool hasAncestor(GraphicsLayer*) const;
206 const Vector<GraphicsLayer*>
[all...]
/external/webkit/Source/WebCore/platform/graphics/mac/
H A DWebGLLayer.h34 class GraphicsLayer;
40 WebCore::GraphicsLayer* m_layerOwner;
H A DWebLayer.h34 class GraphicsLayer;
/external/webkit/Source/WebCore/platform/graphics/android/
H A DGraphicsLayerAndroid.h24 #include "GraphicsLayer.h"
44 class GraphicsLayerAndroid : public GraphicsLayer, PicturePainter {
58 // for hosting this GraphicsLayer in a native layer hierarchy
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* siblin
[all...]
H A DGraphicsLayerAndroid.cpp90 PassOwnPtr<GraphicsLayer> GraphicsLayer::create(GraphicsLayerClient* client)
101 GraphicsLayer(client),
136 GraphicsLayer::setName(name);
145 bool GraphicsLayerAndroid::setChildren(const Vector<GraphicsLayer*>& children)
147 bool childrenChanged = GraphicsLayer::setChildren(children);
156 void GraphicsLayerAndroid::addChild(GraphicsLayer* childLayer)
162 GraphicsLayer::addChild(childLayer);
167 void GraphicsLayerAndroid::addChildAtIndex(GraphicsLayer* childLayer, int index)
170 GraphicsLayer
[all...]
/external/webkit/Source/WebKit2/WebProcess/FullScreen/mac/
H A DWebFullScreenManagerMac.h46 virtual void setRootFullScreenLayer(WebCore::GraphicsLayer*);
55 OwnPtr<WebCore::GraphicsLayer> m_rootLayer;
56 WebCore::GraphicsLayer* m_fullScreenRootLayer;
/external/webkit/Source/WebKit2/WebProcess/FullScreen/gtk/
H A DWebFullScreenManagerGtk.h38 virtual void setRootFullScreenLayer(WebCore::GraphicsLayer*);
H A DWebFullScreenManagerGtk.cpp39 void WebFullScreenManagerGtk::setRootFullScreenLayer(WebCore::GraphicsLayer* layer)
/external/webkit/Source/WebCore/platform/graphics/ca/
H A DGraphicsLayerCA.h31 #include "GraphicsLayer.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* oldChil
[all...]

Completed in 214 milliseconds

1234