• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/WebCore-7537.78.1/platform/graphics/ca/

Lines Matching refs:PlatformCAAnimation

192 static PlatformCAAnimation::ValueFunctionType getValueFunctionNameForTransformOperation(TransformOperation::OperationType transformType)
197 return PlatformCAAnimation::RotateX;
199 return PlatformCAAnimation::RotateY;
201 return PlatformCAAnimation::RotateZ;
203 return PlatformCAAnimation::ScaleX;
205 return PlatformCAAnimation::ScaleY;
207 return PlatformCAAnimation::ScaleZ;
209 return PlatformCAAnimation::TranslateX;
211 return PlatformCAAnimation::TranslateY;
213 return PlatformCAAnimation::TranslateZ;
216 return PlatformCAAnimation::Scale;
219 return PlatformCAAnimation::Translate;
221 return PlatformCAAnimation::NoValueFunction;
486 RefPtr<PlatformCAAnimation> anim = fromLayer->animationForKey(animationIdentifier);
1945 void GraphicsLayerCA::setAnimationOnLayer(PlatformCAAnimation* caAnim, AnimatedPropertyID property, const String& animationName, int index, int subIndex, double timeOffset)
2015 RefPtr<PlatformCAAnimation> curAnim = layer->animationForKey(animationID);
2020 RefPtr<PlatformCAAnimation> newAnim = curAnim->copy();
2066 RefPtr<PlatformCAAnimation> caAnimation;
2090 RefPtr<PlatformCAAnimation> caAnimation;
2118 if ((hasBigRotation || (operations && operations->size() > 1)) && !PlatformCAAnimation::supportsValueFunction())
2126 bool isMatrixAnimation = listIndex < 0 || !PlatformCAAnimation::supportsValueFunction();
2171 // PlatformCAAnimation tells us how many properties each filter has and we iterate that many times and create an animation
2172 // for each. This internalFilterPropertyIndex gets passed to PlatformCAAnimation so it can properly create the property animation
2176 RefPtr<PlatformCAAnimation> caAnimation;
2225 PassRefPtr<PlatformCAAnimation> GraphicsLayerCA::createBasicAnimation(const Animation* anim, const String& keyPath, bool additive)
2227 RefPtr<PlatformCAAnimation> basicAnim = PlatformCAAnimation::create(PlatformCAAnimation::Basic, keyPath);
2232 PassRefPtr<PlatformCAAnimation>GraphicsLayerCA::createKeyframeAnimation(const Animation* anim, const String& keyPath, bool additive)
2234 RefPtr<PlatformCAAnimation> keyframeAnim = PlatformCAAnimation::create(PlatformCAAnimation::Keyframe, keyPath);
2239 void GraphicsLayerCA::setupAnimation(PlatformCAAnimation* propertyAnim, const Animation* anim, bool additive)
2251 PlatformCAAnimation::FillModeType fillMode = PlatformCAAnimation::NoFillMode;
2254 fillMode = PlatformCAAnimation::Forwards; // Use "forwards" rather than "removed" because the style system will remove the animation when it is finished. This avoids a flash.
2257 fillMode = PlatformCAAnimation::Both; // Use "both" rather than "backwards" because the style system will remove the animation when it is finished. This avoids a flash.
2260 fillMode = PlatformCAAnimation::Forwards;
2263 fillMode = PlatformCAAnimation::Both;
2285 bool GraphicsLayerCA::setAnimationEndpoints(const KeyframeValueList& valueList, const Animation* animation, PlatformCAAnimation* basicAnim)
2312 bool GraphicsLayerCA::setAnimationKeyframes(const KeyframeValueList& valueList, const Animation* animation, PlatformCAAnimation* keyframeAnim)
2347 bool GraphicsLayerCA::setTransformAnimationEndpoints(const KeyframeValueList& valueList, const Animation* animation, PlatformCAAnimation* basicAnim, int functionIndex, TransformOperation::OperationType transformOpType, bool isMatrixAnimation, const IntSize& boxSize)
2403 PlatformCAAnimation::ValueFunctionType valueFunction = getValueFunctionNameForTransformOperation(transformOpType);
2404 if (valueFunction != PlatformCAAnimation::NoValueFunction)
2410 bool GraphicsLayerCA::setTransformAnimationKeyframes(const KeyframeValueList& valueList, const Animation* animation, PlatformCAAnimation* keyframeAnim, int functionIndex, TransformOperation::OperationType transformOpType, bool isMatrixAnimation, const IntSize& boxSize)
2466 PlatformCAAnimation::ValueFunctionType valueFunction = getValueFunctionNameForTransformOperation(transformOpType);
2467 if (valueFunction != PlatformCAAnimation::NoValueFunction)
2474 bool GraphicsLayerCA::setFilterAnimationEndpoints(const KeyframeValueList& valueList, const Animation* animation, PlatformCAAnimation* basicAnim, int functionIndex, int internalFilterPropertyIndex)
2514 bool GraphicsLayerCA::setFilterAnimationKeyframes(const KeyframeValueList& valueList, const Animation* animation, PlatformCAAnimation* keyframeAnim, int functionIndex, int internalFilterPropertyIndex, FilterOperation::OperationType filterOp)