Lines Matching defs:LayerChromium

35 #include "LayerChromium.h"
56 PassRefPtr<LayerChromium> LayerChromium::create(GraphicsLayerChromium* owner)
58 return adoptRef(new LayerChromium(owner));
61 LayerChromium::LayerChromium(GraphicsLayerChromium* owner)
86 LayerChromium::~LayerChromium()
99 void LayerChromium::cleanupResources()
105 void LayerChromium::setLayerRenderer(LayerRendererChromium* renderer)
116 void LayerChromium::setNeedsCommit()
126 void LayerChromium::addSublayer(PassRefPtr<LayerChromium> sublayer)
131 void LayerChromium::insertSublayer(PassRefPtr<LayerChromium> sublayer, size_t index)
140 void LayerChromium::removeFromSuperlayer()
146 void LayerChromium::removeSublayer(LayerChromium* sublayer)
157 void LayerChromium::replaceSublayer(LayerChromium* reference, PassRefPtr<LayerChromium> newLayer)
179 int LayerChromium::indexOfSublayer(const LayerChromium* reference)
188 void LayerChromium::setBounds(const IntSize& size)
203 void LayerChromium::setFrame(const FloatRect& rect)
212 const LayerChromium* LayerChromium::rootLayer() const
214 const LayerChromium* layer = this;
215 for (LayerChromium* superlayer = layer->superlayer(); superlayer; layer = superlayer, superlayer = superlayer->superlayer()) { }
219 void LayerChromium::removeAllSublayers()
222 LayerChromium* layer = m_sublayers[0].get();
228 void LayerChromium::setSublayers(const Vector<RefPtr<LayerChromium> >& sublayers)
239 LayerChromium* LayerChromium::superlayer() const
244 void LayerChromium::setName(const String& name)
249 void LayerChromium::setNeedsDisplay(const FloatRect& dirtyRect)
260 void LayerChromium::setNeedsDisplay()
268 void LayerChromium::resetNeedsDisplay()
274 void LayerChromium::toGLMatrix(float* flattened, const TransformationMatrix& m)
294 void LayerChromium::pushPropertiesTo(CCLayerImpl* layer)
317 GraphicsContext3D* LayerChromium::layerRendererContext() const
323 void LayerChromium::drawTexturedQuad(GraphicsContext3D* context, const TransformationMatrix& projectionMatrix, const TransformationMatrix& drawMatrix,
345 String LayerChromium::layerTreeAsText() const
358 void LayerChromium::dumpLayer(TextStream& ts, int indent) const
379 void LayerChromium::dumpLayerProperties(TextStream& ts, int indent) const
390 PassRefPtr<CCLayerImpl> LayerChromium::createCCLayerImpl()
395 void LayerChromium::createCCLayerImplIfNeeded()
401 CCLayerImpl* LayerChromium::ccLayerImpl()
406 void LayerChromium::setBorderColor(const Color& color)
412 void LayerChromium::setBorderWidth(float width)
418 LayerRendererChromium* LayerChromium::layerRenderer() const