Index: Source/platform/transforms/IdentityTransformOperation.h |
diff --git a/Source/platform/transforms/IdentityTransformOperation.h b/Source/platform/transforms/IdentityTransformOperation.h |
index 86d143206a676596b257ff134cf49dd8fe012c23..dc77d753af567063546b9f188530429646dec0cc 100644 |
--- a/Source/platform/transforms/IdentityTransformOperation.h |
+++ b/Source/platform/transforms/IdentityTransformOperation.h |
@@ -36,6 +36,11 @@ public: |
return adoptRef(new IdentityTransformOperation()); |
} |
+ virtual bool canInterpolateWith(const TransformOperation& other) const |
+ { |
+ return isSameType(other); |
+ } |
+ |
private: |
virtual bool isIdentity() const OVERRIDE FINAL { return true; } |
virtual OperationType type() const OVERRIDE { return Identity; } |