Home | History | Annotate | Download | only in ca

Lines Matching refs:GraphicsLayerCA

30 #include "GraphicsLayerCA.h"
249 return new GraphicsLayerCA(client);
252 GraphicsLayerCA::GraphicsLayerCA(GraphicsLayerClient* client)
269 GraphicsLayerCA::~GraphicsLayerCA()
273 // get released when the rootmost modified GraphicsLayerCA rebuilds its child layers.
288 void GraphicsLayerCA::setName(const String& name)
295 PlatformLayer* GraphicsLayerCA::platformLayer() const
300 bool GraphicsLayerCA::setChildren(const Vector<GraphicsLayer*>& children)
309 void GraphicsLayerCA::addChild(GraphicsLayer* childLayer)
315 void GraphicsLayerCA::addChildAtIndex(GraphicsLayer* childLayer, int index)
321 void GraphicsLayerCA::addChildBelow(GraphicsLayer* childLayer, GraphicsLayer* sibling)
327 void GraphicsLayerCA::addChildAbove(GraphicsLayer* childLayer, GraphicsLayer* sibling)
333 bool GraphicsLayerCA::replaceChild(GraphicsLayer* oldChild, GraphicsLayer* newChild)
342 void GraphicsLayerCA::removeFromParent()
345 static_cast<GraphicsLayerCA*>(m_parent)->noteSublayersChanged();
349 void GraphicsLayerCA::setMaskLayer(GraphicsLayer* layer)
360 static_cast<GraphicsLayerCA*>(m_replicatedLayer)->propagateLayerChangeToReplicas();
363 void GraphicsLayerCA::setReplicatedLayer(GraphicsLayer* layer)
372 void GraphicsLayerCA::setReplicatedByLayer(GraphicsLayer* layer)
382 void GraphicsLayerCA::setPosition(const FloatPoint& point)
391 void GraphicsLayerCA::setAnchorPoint(const FloatPoint3D& point)
400 void GraphicsLayerCA::setSize(const FloatSize& size)
409 void GraphicsLayerCA::setTransform(const TransformationMatrix& t)
418 void GraphicsLayerCA::setChildrenTransform(const TransformationMatrix& t)
427 void GraphicsLayerCA::moveOrCopyLayerAnimation(MoveOrCopy operation, const String& animationIdentifier, PlatformCALayer *fromLayer, PlatformCALayer *toLayer)
445 void GraphicsLayerCA::moveOrCopyAnimationsForProperty(MoveOrCopy operation, AnimatedPropertyID property, PlatformCALayer *fromLayer, PlatformCALayer *toLayer)
460 void GraphicsLayerCA::setPreserves3D(bool preserves3D)
469 void GraphicsLayerCA::setMasksToBounds(bool masksToBounds)
478 void GraphicsLayerCA::setDrawsContent(bool drawsContent)
487 void GraphicsLayerCA::setAcceleratesDrawing(bool acceleratesDrawing)
496 void GraphicsLayerCA::setAllowTiledLayer(bool allowTiledLayer)
507 void GraphicsLayerCA::setBackgroundColor(const Color& color)
518 void GraphicsLayerCA::clearBackgroundColor()
528 void GraphicsLayerCA::setContentsOpaque(bool opaque)
537 void GraphicsLayerCA::setBackfaceVisibility(bool visible)
546 void GraphicsLayerCA::setOpacity(float opacity)
557 void GraphicsLayerCA::setNeedsDisplay()
565 void GraphicsLayerCA::setNeedsDisplayInRect(const FloatRect& r)
591 void GraphicsLayerCA::setContentsNeedsDisplay()
596 void GraphicsLayerCA::setContentsRect(const IntRect& rect)
605 bool GraphicsLayerCA::addAnimation(const KeyframeValueList& valueList, const IntSize& boxSize, const Animation* anim, const String& animationName, double timeOffset)
636 void GraphicsLayerCA::pauseAnimation(const String& animationName, double timeOffset)
653 void GraphicsLayerCA::removeAnimation(const String& animationName)
662 void GraphicsLayerCA::platformCALayerAnimationStarted(CFTimeInterval startTime)
668 void GraphicsLayerCA::setContentsToImage(Image* image)
708 void GraphicsLayerCA::setContentsToMedia(PlatformLayer* mediaLayer)
728 void GraphicsLayerCA::setContentsToCanvas(PlatformLayer* canvasLayer)
742 void GraphicsLayerCA::layerDidDisplay(PlatformLayer* layer)
772 void GraphicsLayerCA::syncCompositingState()
777 void GraphicsLayerCA::syncCompositingStateForThisLayerOnly()
783 void GraphicsLayerCA::recursiveCommitChanges()
788 static_cast<GraphicsLayerCA*>(m_maskLayer)->commitLayerChangesBeforeSublayers();
793 GraphicsLayerCA* curChild = static_cast<GraphicsLayerCA*>(childLayers[i]);
798 static_cast<GraphicsLayerCA*>(m_replicaLayer)->recursiveCommitChanges();
801 static_cast<GraphicsLayerCA*>(m_maskLayer)->commitLayerChangesAfterSublayers();
806 void GraphicsLayerCA::commitLayerChangesBeforeSublayers()
885 void GraphicsLayerCA::commitLayerChangesAfterSublayers()
896 void GraphicsLayerCA::updateLayerNames()
911 void GraphicsLayerCA::updateSublayerList()
920 newSublayers.append(static_cast<GraphicsLayerCA*>(m_replicaLayer)->primaryLayer());
932 GraphicsLayerCA* curChild = static_cast<GraphicsLayerCA*>(childLayers[i]);
954 void GraphicsLayerCA::updateLayerPosition()
978 void GraphicsLayerCA::updateLayerSize()
1027 void GraphicsLayerCA::updateAnchorPoint()
1042 void GraphicsLayerCA::updateTransform()
1060 void GraphicsLayerCA::updateChildrenTransform()
1071 void GraphicsLayerCA::updateMasksToBounds()
1084 void GraphicsLayerCA::updateContentsOpaque()
1095 void GraphicsLayerCA::updateBackfaceVisibility()
1116 void GraphicsLayerCA::updateStructuralLayer()
1121 void GraphicsLayerCA::ensureStructuralLayer(StructuralLayerPurpose purpose)
1217 GraphicsLayerCA::StructuralLayerPurpose GraphicsLayerCA::structuralLayerPurpose() const
1228 void GraphicsLayerCA::updateLayerDrawsContent()
1242 void GraphicsLayerCA::updateAcceleratesDrawing()
1247 void GraphicsLayerCA::updateLayerBackgroundColor()
1259 void GraphicsLayerCA::updateContentsImage()
1293 void GraphicsLayerCA::updateContentsMediaLayer()
1302 void GraphicsLayerCA::updateContentsCanvasLayer()
1312 void GraphicsLayerCA::updateContentsRect()
1332 void GraphicsLayerCA::updateMaskLayer()
1334 PlatformCALayer* maskCALayer = m_maskLayer ? static_cast<GraphicsLayerCA*>(m_maskLayer)->primaryLayer() : 0;
1337 LayerMap* maskLayerCloneMap = m_maskLayer ? static_cast<GraphicsLayerCA*>(m_maskLayer)->primaryLayerClones() : 0;
1348 void GraphicsLayerCA::updateReplicatedLayers()
1364 GraphicsLayerCA::CloneID GraphicsLayerCA::ReplicaState::cloneID() const
1384 PassRefPtr<PlatformCALayer> GraphicsLayerCA::replicatedLayerRoot(ReplicaState& replicaState)
1390 GraphicsLayerCA* replicatedLayer = static_cast<GraphicsLayerCA*>(m_replicatedLayer);
1402 void GraphicsLayerCA::updateLayerAnimations()
1454 void GraphicsLayerCA::setAnimationOnLayer(PlatformCAAnimation* caAnim, AnimatedPropertyID property, const String& animationName, int index, double timeOffset)
1493 bool GraphicsLayerCA::removeCAAnimationFromLayer(AnimatedPropertyID property, const String& animationName, int index)
1518 void GraphicsLayerCA::pauseCAAnimationOnLayer(AnimatedPropertyID property, const String& animationName, int index, double timeOffset)
1548 void GraphicsLayerCA::repaintLayerDirtyRects()
1559 void GraphicsLayerCA::updateContentsNeedsDisplay()
1565 bool GraphicsLayerCA::createAnimationFromKeyframes(const KeyframeValueList& valueList, const Animation* animation, const String& animationName, double timeOffset)
1593 bool GraphicsLayerCA::createTransformAnimationsFromKeyframes(const KeyframeValueList& valueList, const Animation* animation, const String& animationName, double timeOffset, const IntSize& boxSize)
1648 PassRefPtr<PlatformCAAnimation> GraphicsLayerCA::createBasicAnimation(const Animation* anim, AnimatedPropertyID property, bool additive)
1655 PassRefPtr<PlatformCAAnimation>GraphicsLayerCA::createKeyframeAnimation(const Animation* anim, AnimatedPropertyID property, bool additive)
1662 void GraphicsLayerCA::setupAnimation(PlatformCAAnimation* propertyAnim, const Animation* anim, bool additive)
1698 const TimingFunction* GraphicsLayerCA::timingFunctionForAnimationValue(const AnimationValue* animValue, const Animation* anim)
1708 bool GraphicsLayerCA::setAnimationEndpoints(const KeyframeValueList& valueList, const Animation* anim, PlatformCAAnimation* basicAnim)
1730 bool GraphicsLayerCA::setAnimationKeyframes(const KeyframeValueList& valueList, const Animation* anim, PlatformCAAnimation* keyframeAnim)
1764 bool GraphicsLayerCA::setTransformAnimationEndpoints(const KeyframeValueList& valueList, const Animation* anim, PlatformCAAnimation* basicAnim, int functionIndex, TransformOperation::OperationType transformOpType, bool isMatrixAnimation, const IntSize& boxSize)
1823 bool GraphicsLayerCA::setTransformAnimationKeyframes(const KeyframeValueList& valueList, const Animation* animation, PlatformCAAnimation* keyframeAnim, int functionIndex, TransformOperation::OperationType transformOpType, bool isMatrixAnimation, const IntSize& boxSize)
1887 void GraphicsLayerCA::suspendAnimations(double time)
1903 void GraphicsLayerCA::resumeAnimations()
1918 PlatformCALayer* GraphicsLayerCA::hostLayerForSublayers() const
1923 PlatformCALayer* GraphicsLayerCA::layerForSuperlayer() const
1928 PlatformCALayer* GraphicsLayerCA::animatedLayer(AnimatedPropertyID property) const
1933 GraphicsLayerCA::LayerMap* GraphicsLayerCA::animatedLayerClones(AnimatedPropertyID property) const
1938 void GraphicsLayerCA::setContentsScale(float scale)
1948 float GraphicsLayerCA::clampedContentsScaleForScale(float scale) const
1965 void GraphicsLayerCA::updateContentsScale()
1976 void GraphicsLayerCA::setDebugBackgroundColor(const Color& color)
1984 void GraphicsLayerCA::setDebugBorder(const Color& color, float borderWidth)
1995 FloatSize GraphicsLayerCA::constrainedSize() const
2018 bool GraphicsLayerCA::requiresTiledLayer(const FloatSize& size) const
2027 void GraphicsLayerCA::swapFromOrToTiledLayer(bool useTiledLayer)
2044 setContentsOrientation(GraphicsLayerCA::defaultContentsOrientation());
2085 GraphicsLayer::CompositingCoordinatesOrientation GraphicsLayerCA::defaultContentsOrientation() const
2097 void GraphicsLayerCA::updateContentsTransform()
2108 void GraphicsLayerCA::setupContentsLayer(PlatformCALayer* contentsLayer)
2130 PassRefPtr<PlatformCALayer> GraphicsLayerCA::findOrMakeClone(CloneID cloneID, PlatformCALayer *sourceLayer, LayerMap* clones, CloneLevel cloneLevel)
2155 void GraphicsLayerCA::ensureCloneLayers(CloneID cloneID, RefPtr<PlatformCALayer>& primaryLayer, RefPtr<PlatformCALayer>& structuralLayer, RefPtr<PlatformCALayer>& contentsLayer, CloneLevel cloneLevel)
2174 void GraphicsLayerCA::removeCloneLayers()
2181 FloatPoint GraphicsLayerCA::positionForCloneRootLayer() const
2192 void GraphicsLayerCA::propagateLayerChangeToReplicas()
2195 GraphicsLayerCA* currLayerCA = static_cast<GraphicsLayerCA*>(currLayer);
2200 static_cast<GraphicsLayerCA*>(currLayerCA->replicaLayer())->noteLayerPropertyChanged(ReplicatedLayerChanged);
2204 PassRefPtr<PlatformCALayer> GraphicsLayerCA::fetchCloneLayers(GraphicsLayer* replicaRoot, ReplicaState& replicaState, CloneLevel cloneLevel)
2212 RefPtr<PlatformCALayer> maskClone = static_cast<GraphicsLayerCA*>(m_maskLayer)->fetchCloneLayers(replicaRoot, replicaState, IntermediateCloneLevel);
2239 replicaLayer = static_cast<GraphicsLayerCA*>(m_replicaLayer)->fetchCloneLayers(replicaRoot, replicaState, RootCloneLevel);
2262 GraphicsLayerCA* curChild = static_cast<GraphicsLayerCA*>(childLayers[i]);
2295 PassRefPtr<PlatformCALayer> GraphicsLayerCA::cloneLayer(PlatformCALayer *layer, CloneLevel cloneLevel)
2327 void GraphicsLayerCA::setOpacityInternal(float accumulatedOpacity)
2349 void GraphicsLayerCA::updateOpacityOnLayer()
2371 void GraphicsLayerCA::noteSublayersChanged()
2377 void GraphicsLayerCA::noteLayerPropertyChanged(LayerChangeFlags flags)