HomeSort by relevance Sort by last modified time
    Searched refs:graphicsLayer (Results 1 - 10 of 10) sorted by null

  /external/webkit/WebCore/rendering/
RenderLayerBacking.h 33 #include "GraphicsLayer.h"
66 GraphicsLayer* graphicsLayer() const { return m_graphicsLayer.get(); }
70 GraphicsLayer* clippingLayer() const { return m_clippingLayer.get(); }
74 GraphicsLayer* ancestorClippingLayer() const { return m_ancestorClippingLayer.get(); }
77 GraphicsLayer* foregroundLayer() const { return m_foregroundLayer.get(); }
81 GraphicsLayer* parentForSublayers() const { return m_clippingLayer ? m_clippingLayer.get() : m_graphicsLayer.get(); }
82 GraphicsLayer* childForSuperlayers() const { return m_ancestorClippingLayer ? m_ancestorClippingLayer.get() : m_graphicsLayer.get(); }
85 // their content is rendered via callbacks from GraphicsLayer. However, the document
86 // layer is special, because it has a GraphicsLayer to act as a container for the GraphicsLayer
    [all...]
RenderLayerBacking.cpp 38 #include "GraphicsLayer.h"
93 m_graphicsLayer = GraphicsLayer::create(this);
157 // the transform-origin via the GraphicsLayer anchorPoint (which is expressed as a fractional value).
173 // position of this layer's GraphicsLayer depends on the position of our compositing
174 // ancestor's GraphicsLayer. That cannot be determined until all the descendant
205 GraphicsLayer* reflectionLayer = m_owningLayer->reflectionLayer()->backing()->graphicsLayer();
376 reflectionBacking->graphicsLayer()->setReplicatedLayerPosition(FloatPoint() + (layerBounds.location() - reflectionLayerBounds.location()));
406 m_ancestorClippingLayer = GraphicsLayer::create(this);
421 m_clippingLayer = GraphicsLayer::create(0)
    [all...]
RenderVideo.cpp 279 GraphicsLayer* RenderVideo::videoGraphicsLayer() const
282 return layer()->backing()->graphicsLayer();
RenderLayerCompositor.cpp 37 #include "GraphicsLayer.h"
214 Vector<GraphicsLayer*> childList;
260 // If we're removing backing on a reflection, clear the source GraphicsLayer's pointer to
261 // its replica GraphicsLayer. In practice this should never happen because reflectee and reflection
266 ASSERT(backing->graphicsLayer()->replicaLayer() == layer->backing()->graphicsLayer());
267 backing->graphicsLayer()->setReplicatedByLayer(0);
319 // and a GraphicsLayer, so we need to make sure the window system
325 // The bounds of the GraphicsLayer created for a compositing layer is the union of the bounds of all the descendant
420 // The contents of this layer may be moving from a GraphicsLayer to the window
    [all...]
  /external/webkit/WebKit/qt/WebCoreSupport/
ChromeClientQt.cpp 479 void ChromeClientQt::attachRootGraphicsLayer(Frame* frame, GraphicsLayer* graphicsLayer)
482 platformPageClient()->setRootGraphicsLayer(graphicsLayer ? graphicsLayer->nativeLayer() : 0);
  /external/webkit/WebKit/mac/WebCoreSupport/
WebChromeClient.mm 71 #import <WebCore/GraphicsLayer.h>
697 void WebChromeClient::attachRootGraphicsLayer(Frame* frame, GraphicsLayer* graphicsLayer)
704 ASSERT(!graphicsLayer);
709 if (graphicsLayer)
710 [webHTMLView attachRootLayer:graphicsLayer->nativeLayer()];
  /external/webkit/WebKit/win/WebCoreSupport/
WebChromeClient.cpp 778 void WebChromeClient::attachRootGraphicsLayer(Frame* frame, GraphicsLayer* graphicsLayer)
780 m_webView->setRootChildLayer(graphicsLayer ? graphicsLayer->platformLayer() : 0);
  /external/webkit/WebCore/platform/graphics/mac/
GraphicsLayerCA.mm 99 - (WebCore::GraphicsLayerCA*)graphicsLayer;
100 - (void)setLayer:(WebCore::GraphicsLayerCA*)graphicsLayer;
115 - (WebCore::GraphicsLayerCA*)graphicsLayer
120 - (void)setLayer:(WebCore::GraphicsLayerCA*)graphicsLayer
122 m_graphicsLayer = graphicsLayer;
339 GraphicsLayer::CompositingCoordinatesOrientation GraphicsLayer::compositingCoordinatesOrientation()
363 PassOwnPtr<GraphicsLayer> GraphicsLayer::create(GraphicsLayerClient* client)
369 : GraphicsLayer(client
    [all...]
  /external/webkit/WebKit/android/jni/
WebViewCore.cpp     [all...]
  /external/webkit/WebKit/android/nav/
CacheBuilder.cpp 478 <GraphicsLayerAndroid*>(back ? back->graphicsLayer() : 0);
    [all...]

Completed in 1044 milliseconds