Home | History | Annotate | Download | only in win

Lines Matching refs:GraphicsLayer

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);
173 void GraphicsLayerCACF::addChildAtIndex(GraphicsLayer* childLayer, int index)
175 GraphicsLayer::addChildAtIndex(childLayer, index);
179 void GraphicsLayerCACF::addChildBelow(GraphicsLayer* childLayer, GraphicsLayer* sibling)
181 GraphicsLayer::addChildBelow(childLayer, sibling);
185 void GraphicsLayerCACF::addChildAbove(GraphicsLayer* childLayer, GraphicsLayer *sibling)
187 GraphicsLayer::addChildAbove(childLayer, sibling);
191 bool GraphicsLayerCACF::replaceChild(GraphicsLayer* oldChild, GraphicsLayer* newChild)
193 if (GraphicsLayer::replaceChild(oldChild, newChild)) {
202 GraphicsLayer::removeFromParent();
208 GraphicsLayer::setPosition(point);
217 GraphicsLayer::setAnchorPoint(point);
226 GraphicsLayer::setSize(size);
235 GraphicsLayer::setTransform(t);
244 GraphicsLayer::setChildrenTransform(t);
253 GraphicsLayer::setPreserves3D(preserves3D);
262 GraphicsLayer::setMasksToBounds(masksToBounds);
271 GraphicsLayer::setDrawsContent(drawsContent);
280 GraphicsLayer::setBackgroundColor(color);
291 GraphicsLayer::clearBackgroundColor();
300 GraphicsLayer::setContentsOpaque(opaque);
309 GraphicsLayer::setBackfaceVisibility(visible);
320 GraphicsLayer::setOpacity(clampedOpacity);
343 GraphicsLayer::setContentsRect(rect);
459 String name = String::format("CALayer(%p) GraphicsLayer(%p) %s", m_layer.get(), this, m_usingTiledLayer ? "[Tiled Layer] " : "") + m_name;
469 GraphicsLayer::CompositingCoordinatesOrientation GraphicsLayerCACF::defaultContentsOrientation() const
488 const Vector<GraphicsLayer*>& childLayers = children();
589 m_transformLayer->setName(String().format("Transform Layer CATransformLayer(%p) GraphicsLayer(%p)", m_transformLayer.get(), this));