| Index: Source/platform/transforms/PerspectiveTransformOperation.h
|
| diff --git a/Source/platform/transforms/PerspectiveTransformOperation.h b/Source/platform/transforms/PerspectiveTransformOperation.h
|
| index e2de31de9b372c9290e365468300a64c06f35995..2ead4edd3a105a8f87111ccc005ed4834be929e0 100644
|
| --- a/Source/platform/transforms/PerspectiveTransformOperation.h
|
| +++ b/Source/platform/transforms/PerspectiveTransformOperation.h
|
| @@ -39,6 +39,11 @@ public:
|
|
|
| double perspective() const { return m_p; }
|
|
|
| + virtual bool canInterpolateWith(const TransformOperation& other) const
|
| + {
|
| + return isSameType(other);
|
| + }
|
| +
|
| private:
|
| virtual bool isIdentity() const OVERRIDE { return !m_p; }
|
| virtual OperationType type() const OVERRIDE { return Perspective; }
|
|
|