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

  /external/webkit/Source/WebCore/platform/graphics/chromium/
RenderSurfaceChromium.h 42 class CCLayerImpl;
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;
CanvasLayerChromium.h 46 virtual PassRefPtr<CCLayerImpl> createCCLayerImpl();
48 virtual void pushPropertiesTo(CCLayerImpl*);
PluginLayerChromium.h 42 virtual PassRefPtr<CCLayerImpl> createCCLayerImpl();
47 virtual void pushPropertiesTo(CCLayerImpl*);
CanvasLayerChromium.cpp 37 #include "cc/CCLayerImpl.h"
55 PassRefPtr<CCLayerImpl> CanvasLayerChromium::createCCLayerImpl()
60 void CanvasLayerChromium::pushPropertiesTo(CCLayerImpl* layer)
PluginLayerChromium.cpp 34 #include "cc/CCLayerImpl.h"
50 PassRefPtr<CCLayerImpl> PluginLayerChromium::createCCLayerImpl()
60 void PluginLayerChromium::pushPropertiesTo(CCLayerImpl* layer)
VideoLayerChromium.h 57 virtual PassRefPtr<CCLayerImpl> createCCLayerImpl();
66 virtual void pushPropertiesTo(CCLayerImpl*);
LayerChromium.h 55 class CCLayerImpl;
106 CCLayerImpl* maskDrawLayer() const { return m_maskLayer ? m_maskLayer->ccLayerImpl() : 0; }
175 // Everything from here down in the public section will move to CCLayerImpl.
176 CCLayerImpl* ccLayerImpl();
183 virtual void pushPropertiesTo(CCLayerImpl*);
185 // Begin calls that forward to the CCLayerImpl.
187 // End calls that forward to the CCLayerImpl.
219 // Constructs a CCLayerImpl of the correct runtime type for this LayerChromium type
    [all...]
LayerRendererChromium.h 63 class CCLayerImpl;
138 typedef Vector<RefPtr<CCLayerImpl> > LayerList;
151 void drawLayer(CCLayerImpl*, RenderSurfaceChromium*);
165 static bool compareLayerZ(const RefPtr<CCLayerImpl>&, const RefPtr<CCLayerImpl>&);
RenderSurfaceChromium.cpp 32 #include "cc/CCLayerImpl.h"
42 RenderSurfaceChromium::RenderSurfaceChromium(CCLayerImpl* owningLayer)
101 void RenderSurfaceChromium::drawSurface(CCLayerImpl* maskLayer, const TransformationMatrix& drawTransform)
151 CCLayerImpl* replicaMaskLayer = m_maskLayer;
LayerChromium.cpp 37 #include "cc/CCLayerImpl.h"
294 void LayerChromium::pushPropertiesTo(CCLayerImpl* layer)
390 PassRefPtr<CCLayerImpl> LayerChromium::createCCLayerImpl()
392 return CCLayerImpl::create(this);
401 CCLayerImpl* LayerChromium::ccLayerImpl()
LayerRendererChromium.cpp 49 #include "cc/CCLayerImpl.h"
91 bool LayerRendererChromium::compareLayerZ(const RefPtr<CCLayerImpl>& a, const RefPtr<CCLayerImpl>& b)
261 CCLayerImpl* rootDrawLayer = m_rootLayer->ccLayerImpl();
335 CCLayerImpl* renderSurfaceLayer = renderSurfaceLayerList[surfaceIndex].get();
347 CCLayerImpl* ccLayerImpl = layerList[layerIndex].get();
351 if (ccLayerImpl->renderSurface() && ccLayerImpl->renderSurface() != renderSurface
    [all...]
VideoLayerChromium.cpp 43 #include "cc/CCLayerImpl.h"
70 PassRefPtr<CCLayerImpl> VideoLayerChromium::createCCLayerImpl()
160 void VideoLayerChromium::pushPropertiesTo(CCLayerImpl* layer)
  /external/webkit/Source/WebCore/platform/graphics/chromium/cc/
CCLayerImpl.cpp 30 #include "cc/CCLayerImpl.h"
63 CCLayerImpl::CCLayerImpl(LayerChromium* owner)
84 CCLayerImpl::~CCLayerImpl()
89 CCLayerImpl* CCLayerImpl::superlayer() const
91 return m_owner->superlayer() ? m_owner->superlayer()->ccLayerImpl() : 0;
94 CCLayerImpl* CCLayerImpl::maskLayer() cons
    [all...]
CCPluginLayerImpl.h 31 #include "cc/CCLayerImpl.h"
35 class CCPluginLayerImpl : public CCLayerImpl {
CCLayerImpl.h 45 class CCLayerImpl : public RefCounted<CCLayerImpl> {
47 static PassRefPtr<CCLayerImpl> create(LayerChromium* owner)
49 return adoptRef(new CCLayerImpl(owner));
52 virtual ~CCLayerImpl();
60 CCLayerImpl* superlayer() const;
61 CCLayerImpl* maskLayer() const;
62 CCLayerImpl* replicaLayer() const;
146 explicit CCLayerImpl(LayerChromium*);
166 // Properties owned exclusively by this CCLayerImpl
    [all...]
CCCanvasLayerImpl.h 31 #include "cc/CCLayerImpl.h"
35 class CCCanvasLayerImpl : public CCLayerImpl {
CCCanvasLayerImpl.cpp 40 : CCLayerImpl(owner)
74 CCLayerImpl::dumpLayerProperties(ts, indent);
CCVideoLayerImpl.h 33 #include "cc/CCLayerImpl.h"
39 class CCVideoLayerImpl : public CCLayerImpl {
CCPluginLayerImpl.cpp 40 : CCLayerImpl(owner)
78 CCLayerImpl::dumpLayerProperties(ts, indent);
CCVideoLayerImpl.cpp 63 : CCLayerImpl(owner)
167 CCLayerImpl::dumpLayerProperties(ts, indent);

Completed in 696 milliseconds