Searched defs:toT (Results 1 - 4 of 4) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/transforms/
H A DMatrix3DTransformOperation.cpp43 TransformationMatrix toT; local
47 apply(toT, size);
50 std::swap(fromT, toT);
52 toT.blend(fromT, progress);
53 return Matrix3DTransformOperation::create(toT);
H A DPerspectiveTransformOperation.cpp51 TransformationMatrix toT; local
53 toT.applyPerspective(toP.calcFloatValue(1));
54 toT.blend(fromT, progress);
56 toT.decompose(decomp);
H A DRotateTransformOperation.cpp57 TransformationMatrix toT; local
63 toT.rotate3d((float)(toOp ? toOp->m_x : 0),
69 toT.blend(fromT, progress);
73 toT.decompose(decomp);
/external/webkit/Source/WebCore/page/animation/
H A DAnimationBase.cpp184 TransformationMatrix toT; local
186 to.apply(size, toT);
188 toT.blend(fromT, progress);
191 result.operations().append(Matrix3DTransformOperation::create(toT));

Completed in 132 milliseconds