Index: Source/platform/transforms/InterpolatedTransformOperation.h |
diff --git a/Source/platform/transforms/InterpolatedTransformOperation.h b/Source/platform/transforms/InterpolatedTransformOperation.h |
index 108d172f071aecad7f27936d57c7bd9be5237865..e681196adec6a52d0db119aeb1f0abe1a2bba799 100644 |
--- a/Source/platform/transforms/InterpolatedTransformOperation.h |
+++ b/Source/platform/transforms/InterpolatedTransformOperation.h |
@@ -44,6 +44,11 @@ public: |
return adoptRef(new InterpolatedTransformOperation(from, to, progress)); |
} |
+ virtual bool canInterpolateWith(const TransformOperation& other) const |
+ { |
+ return isSameType(other); |
+ } |
+ |
private: |
virtual bool isIdentity() const OVERRIDE { return false; } |