HomeSort by relevance Sort by last modified time
    Searched refs:GraphicsLayer (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /external/webkit/Source/WebCore/platform/graphics/win/
WebLayer.h 35 class GraphicsLayer;
39 static PassRefPtr<WKCACFLayer> create(LayerType layerType, GraphicsLayer* owner)
47 WebLayer(LayerType layerType, GraphicsLayer* owner)
55 GraphicsLayer* m_owner;
GraphicsLayerCACF.h 31 #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 *oldChild, GraphicsLayer *newChild)
    [all...]
GraphicsLayerCACF.cpp 120 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::addChild(childLayer)
    [all...]
WebTiledLayer.h 37 static PassRefPtr<WebTiledLayer> create(const CGSize& tileSize, GraphicsLayer* owner);
45 WebTiledLayer(const CGSize& tileSize, GraphicsLayer* owner);
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsLayerQt.h 23 #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* layer, GraphicsLayer* sibling)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/texmap/
GraphicsLayerTextureMapper.cpp 28 : 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::setChildren(children)
    [all...]
GraphicsLayerTextureMapper.h 24 #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* layer, GraphicsLayer* sibling)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/chromium/
GraphicsLayerChromium.h 37 #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* oldChild, GraphicsLayer* newChild)
    [all...]
GraphicsLayerChromium.cpp 87 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::addChild(childLayer)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsLayerClient.h 34 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;
GraphicsLayer.cpp 30 #include "GraphicsLayer.h"
64 GraphicsLayer::GraphicsLayer(GraphicsLayerClient* client)
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*>& newChildren
    [all...]
GraphicsLayer.h 100 // represent values for properties being animated via the GraphicsLayer,
184 // GraphicsLayer is an abstraction for a rendering surface with backing store,
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; };
201 void setParent(GraphicsLayer* layer) { m_parent = layer; } // Internal use only.
204 bool hasAncestor(GraphicsLayer*) const;
206 const Vector<GraphicsLayer*>& children() const { return m_children;
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/mac/
WebGLLayer.h 34 class GraphicsLayer;
40 WebCore::GraphicsLayer* m_layerOwner;
WebLayer.h 34 class GraphicsLayer;
  /external/webkit/Source/WebKit2/WebProcess/WebPage/ca/
LayerTreeHostCA.h 43 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;
LayerTreeHostCA.cpp 53 m_rootLayer = GraphicsLayer::create(this);
61 m_nonCompositedContentLayer = GraphicsLayer::create(this);
98 void LayerTreeHostCA::setRootCompositingLayer(GraphicsLayer* graphicsLayer)
103 if (graphicsLayer)
104 m_nonCompositedContentLayer->addChild(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
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderLayerBacking.h 33 #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 GraphicsLayer
    [all...]
RenderLayerCompositor.h 37 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) { }
194 virtual void notifySyncRequired(const GraphicsLayer*) { scheduleLayerFlush(); }
195 virtual void paintContents(const GraphicsLayer*, GraphicsContext&, GraphicsLayerPaintingPhase, const IntRect&);
229 void rebuildCompositingLayerTree(RenderLayer* layer, const struct CompositingState&, Vector<GraphicsLayer*>& childGraphicsLayersOfEnclosingLayer)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/
GraphicsLayerAndroid.h 24 #include "GraphicsLayer.h"
43 class GraphicsLayerAndroid : public GraphicsLayer {
51 // for hosting this GraphicsLayer in a native layer hierarchy
54 virtual bool setChildren(const Vector<GraphicsLayer*>&);
55 virtual void addChild(GraphicsLayer*);
56 virtual void addChildAtIndex(GraphicsLayer*, int index);
57 virtual void addChildAbove(GraphicsLayer* layer, GraphicsLayer* sibling);
58 virtual void addChildBelow(GraphicsLayer* layer, GraphicsLayer* sibling)
    [all...]
GraphicsLayerAndroid.cpp 89 PassOwnPtr<GraphicsLayer> GraphicsLayer::create(GraphicsLayerClient* client)
100 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::addChildAtIndex(childLayer, index)
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/FullScreen/mac/
WebFullScreenManagerMac.h 46 virtual void setRootFullScreenLayer(WebCore::GraphicsLayer*);
55 OwnPtr<WebCore::GraphicsLayer> m_rootLayer;
56 WebCore::GraphicsLayer* m_fullScreenRootLayer;
  /external/webkit/Source/WebKit2/WebProcess/FullScreen/gtk/
WebFullScreenManagerGtk.h 38 virtual void setRootFullScreenLayer(WebCore::GraphicsLayer*);
WebFullScreenManagerGtk.cpp 39 void WebFullScreenManagerGtk::setRootFullScreenLayer(WebCore::GraphicsLayer* layer)
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
LayerTreeHost.h 35 class GraphicsLayer;
54 virtual void setRootCompositingLayer(WebCore::GraphicsLayer*) = 0;
  /external/webkit/Source/WebCore/platform/graphics/ca/
GraphicsLayerCA.h 31 #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* oldChild, GraphicsLayer* newChild)
    [all...]

Completed in 432 milliseconds

1 2 3 4