Home
last modified time | relevance | path

Searched refs:CCLayerImpl (Results 1 – 22 of 22) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/chromium/cc/
DCCLayerImpl.cpp63 CCLayerImpl::CCLayerImpl(LayerChromium* owner) in CCLayerImpl() function in WebCore::CCLayerImpl
84 CCLayerImpl::~CCLayerImpl() in ~CCLayerImpl()
89 CCLayerImpl* CCLayerImpl::superlayer() const in superlayer()
94 CCLayerImpl* CCLayerImpl::maskLayer() const in maskLayer()
99 CCLayerImpl* CCLayerImpl::replicaLayer() const in replicaLayer()
104 void CCLayerImpl::setLayerRenderer(LayerRendererChromium* renderer) in setLayerRenderer()
109 RenderSurfaceChromium* CCLayerImpl::createRenderSurface() in createRenderSurface()
115 bool CCLayerImpl::descendantsDrawsContent() in descendantsDrawsContent()
127 bool CCLayerImpl::drawsContent() const in drawsContent()
132 void CCLayerImpl::draw(const IntRect& targetSurfaceRect) in draw()
[all …]
DCCLayerImpl.h45 class CCLayerImpl : public RefCounted<CCLayerImpl> {
47 static PassRefPtr<CCLayerImpl> create(LayerChromium* owner) in create()
49 return adoptRef(new CCLayerImpl(owner)); in create()
52 virtual ~CCLayerImpl();
60 CCLayerImpl* superlayer() const;
61 CCLayerImpl* maskLayer() const;
62 CCLayerImpl* replicaLayer() const;
146 explicit CCLayerImpl(LayerChromium*);
DCCCanvasLayerImpl.cpp40 : CCLayerImpl(owner) in CCCanvasLayerImpl()
74 CCLayerImpl::dumpLayerProperties(ts, indent); in dumpLayerProperties()
DCCPluginLayerImpl.cpp40 : CCLayerImpl(owner) in CCPluginLayerImpl()
78 CCLayerImpl::dumpLayerProperties(ts, indent); in dumpLayerProperties()
DCCVideoLayerImpl.cpp63 : CCLayerImpl(owner) in CCVideoLayerImpl()
167 CCLayerImpl::dumpLayerProperties(ts, indent); in dumpLayerProperties()
DCCPluginLayerImpl.h35 class CCPluginLayerImpl : public CCLayerImpl {
DCCCanvasLayerImpl.h35 class CCCanvasLayerImpl : public CCLayerImpl {
DCCVideoLayerImpl.h39 class CCVideoLayerImpl : public CCLayerImpl {
/external/webkit/Source/WebCore/platform/graphics/chromium/
DRenderSurfaceChromium.h42 class CCLayerImpl; variable
50 explicit RenderSurfaceChromium(CCLayerImpl*);
73 void drawSurface(CCLayerImpl* maskLayer, const TransformationMatrix& drawTransform);
75 CCLayerImpl* m_owningLayer;
76 CCLayerImpl* m_maskLayer;
87 Vector<RefPtr<CCLayerImpl> > m_layerList;
DLayerChromium.h55 class CCLayerImpl; variable
106 CCLayerImpl* maskDrawLayer() const { return m_maskLayer ? m_maskLayer->ccLayerImpl() : 0; } in maskDrawLayer()
176 CCLayerImpl* ccLayerImpl();
183 virtual void pushPropertiesTo(CCLayerImpl*);
220 virtual PassRefPtr<CCLayerImpl> createCCLayerImpl();
223 RefPtr<CCLayerImpl> m_ccLayerImpl;
DLayerRendererChromium.h63 class CCLayerImpl; variable
138 typedef Vector<RefPtr<CCLayerImpl> > LayerList;
151 void drawLayer(CCLayerImpl*, RenderSurfaceChromium*);
165 static bool compareLayerZ(const RefPtr<CCLayerImpl>&, const RefPtr<CCLayerImpl>&);
DCanvasLayerChromium.h46 virtual PassRefPtr<CCLayerImpl> createCCLayerImpl();
48 virtual void pushPropertiesTo(CCLayerImpl*);
DCanvasLayerChromium.cpp55 PassRefPtr<CCLayerImpl> CanvasLayerChromium::createCCLayerImpl() in createCCLayerImpl()
60 void CanvasLayerChromium::pushPropertiesTo(CCLayerImpl* layer) in pushPropertiesTo()
DPluginLayerChromium.h42 virtual PassRefPtr<CCLayerImpl> createCCLayerImpl();
47 virtual void pushPropertiesTo(CCLayerImpl*);
DPluginLayerChromium.cpp50 PassRefPtr<CCLayerImpl> PluginLayerChromium::createCCLayerImpl() in createCCLayerImpl()
60 void PluginLayerChromium::pushPropertiesTo(CCLayerImpl* layer) in pushPropertiesTo()
DVideoLayerChromium.h57 virtual PassRefPtr<CCLayerImpl> createCCLayerImpl();
66 virtual void pushPropertiesTo(CCLayerImpl*);
DRenderSurfaceChromium.cpp42 RenderSurfaceChromium::RenderSurfaceChromium(CCLayerImpl* owningLayer) in RenderSurfaceChromium()
101 void RenderSurfaceChromium::drawSurface(CCLayerImpl* maskLayer, const TransformationMatrix& drawTra… in drawSurface()
151 CCLayerImpl* replicaMaskLayer = m_maskLayer; in draw()
DLayerChromium.cpp294 void LayerChromium::pushPropertiesTo(CCLayerImpl* layer) in pushPropertiesTo()
390 PassRefPtr<CCLayerImpl> LayerChromium::createCCLayerImpl() in createCCLayerImpl()
392 return CCLayerImpl::create(this); in createCCLayerImpl()
401 CCLayerImpl* LayerChromium::ccLayerImpl() in ccLayerImpl()
DLayerRendererChromium.cpp91 bool LayerRendererChromium::compareLayerZ(const RefPtr<CCLayerImpl>& a, const RefPtr<CCLayerImpl>& … in compareLayerZ()
261 CCLayerImpl* rootDrawLayer = m_rootLayer->ccLayerImpl(); in updateLayers()
335 CCLayerImpl* renderSurfaceLayer = renderSurfaceLayerList[surfaceIndex].get(); in paintLayerContents()
347 CCLayerImpl* ccLayerImpl = layerList[layerIndex].get(); in paintLayerContents()
375 CCLayerImpl* rootDrawLayer = m_rootLayer->ccLayerImpl(); in drawLayers()
414 CCLayerImpl* renderSurfaceLayer = renderSurfaceLayerList[surfaceIndex].get(); in drawLayers()
548 CCLayerImpl* drawLayer = layer->ccLayerImpl(); in updatePropertiesAndRenderSurfaces()
734 CCLayerImpl* sublayer = sublayers[i]->ccLayerImpl(); in updatePropertiesAndRenderSurfaces()
814 CCLayerImpl* drawLayer = layer->ccLayerImpl(); in updateCompositorResourcesRecursive()
892 void LayerRendererChromium::drawLayer(CCLayerImpl* layer, RenderSurfaceChromium* targetSurface) in drawLayer()
DVideoLayerChromium.cpp70 PassRefPtr<CCLayerImpl> VideoLayerChromium::createCCLayerImpl() in createCCLayerImpl()
160 void VideoLayerChromium::pushPropertiesTo(CCLayerImpl* layer) in pushPropertiesTo()
/external/webkit/Source/WebCore/
DChangeLog1265 …GraphicsLayer uses parent/child terminology for tree structure, as does CCLayerImpl. LayerChromiu…
1310 * platform/graphics/chromium/cc/CCLayerImpl.cpp:
1311 (WebCore::CCLayerImpl::parent):
1312 (WebCore::CCLayerImpl::descendantsDrawsContent):
1313 * platform/graphics/chromium/cc/CCLayerImpl.h:
2188 * platform/graphics/chromium/cc/CCLayerImpl.cpp:
2189 (WebCore::CCLayerImpl::createRenderSurface):
4305 * platform/graphics/chromium/cc/CCLayerImpl.h:
4306 (WebCore::CCLayerImpl::clearRenderSurface):
10821 * platform/graphics/chromium/cc/CCLayerImpl.cpp:
[all …]
DWebCore.gypi4075 'platform/graphics/chromium/cc/CCLayerImpl.cpp',
4076 'platform/graphics/chromium/cc/CCLayerImpl.h',