Home
last modified time | relevance | path

Searched refs:fromOp (Results 1 – 6 of 6) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/transforms/
DRotateTransformOperation.cpp40 const RotateTransformOperation* fromOp = static_cast<const RotateTransformOperation*>(from); in blend() local
43 if (!fromOp || (fromOp->m_x == 0 && fromOp->m_y == 0 && fromOp->m_z == 1) || in blend()
44 (fromOp->m_x == 0 && fromOp->m_y == 1 && fromOp->m_z == 0) || in blend()
45 (fromOp->m_x == 1 && fromOp->m_y == 0 && fromOp->m_z == 0)) { in blend()
46 double fromAngle = fromOp ? fromOp->m_angle : 0; in blend()
47 return RotateTransformOperation::create(fromOp ? fromOp->m_x : m_x, in blend()
48 fromOp ? fromOp->m_y : m_y, in blend()
49 fromOp ? fromOp->m_z : m_z, in blend()
58 fromT.rotate3d((float)(fromOp ? fromOp->m_x : 0), in blend()
59 (float)(fromOp ? fromOp->m_y : 0), in blend()
[all …]
DScaleTransformOperation.cpp37 const ScaleTransformOperation* fromOp = static_cast<const ScaleTransformOperation*>(from); in blend() local
38 double fromX = fromOp ? fromOp->m_x : 1.; in blend()
39 double fromY = fromOp ? fromOp->m_y : 1.; in blend()
40 double fromZ = fromOp ? fromOp->m_z : 1.; in blend()
DTranslateTransformOperation.cpp38 … const TranslateTransformOperation* fromOp = static_cast<const TranslateTransformOperation*>(from); in blend() local
39 Length fromX = fromOp ? fromOp->m_x : Length(m_x.type()); in blend()
40 Length fromY = fromOp ? fromOp->m_y : Length(m_y.type()); in blend()
41 Length fromZ = fromOp ? fromOp->m_z : Length(m_z.type()); in blend()
DSkewTransformOperation.cpp35 const SkewTransformOperation* fromOp = static_cast<const SkewTransformOperation*>(from); in blend() local
36 double fromAngleX = fromOp ? fromOp->m_angleX : 0; in blend()
37 double fromAngleY = fromOp ? fromOp->m_angleY : 0; in blend()
DPerspectiveTransformOperation.cpp46 …const PerspectiveTransformOperation* fromOp = static_cast<const PerspectiveTransformOperation*>(fr… in blend() local
47 Length fromP = fromOp ? fromOp->m_p : Length(m_p.type()); in blend()
/external/webkit/Source/WebCore/page/animation/
DAnimationBase.cpp167 RefPtr<TransformOperation> fromOp = (i < fromSize) ? from.operations()[i].get() : 0; in blendFunc() local
169 …Ptr<TransformOperation> blendedOp = toOp ? toOp->blend(fromOp.get(), progress) : (fromOp ? fromOp-… in blendFunc()
177 result.operations().append(fromOp ? fromOp : identityOp); in blendFunc()