| Index: Source/platform/transforms/MatrixTransformOperation.h
|
| diff --git a/Source/platform/transforms/MatrixTransformOperation.h b/Source/platform/transforms/MatrixTransformOperation.h
|
| index ce842c13a00a42165fc255d1b1cef7acc02c4f8e..984b6d8349c782054223ac77a4ad386f515a467f 100644
|
| --- a/Source/platform/transforms/MatrixTransformOperation.h
|
| +++ b/Source/platform/transforms/MatrixTransformOperation.h
|
| @@ -44,6 +44,10 @@ public:
|
|
|
| TransformationMatrix matrix() const { return TransformationMatrix(m_a, m_b, m_c, m_d, m_e, m_f); }
|
|
|
| + virtual bool isCompatibleType(const TransformOperation& other) const
|
| + {
|
| + return false;
|
| + }
|
| private:
|
| virtual bool isIdentity() const OVERRIDE { return m_a == 1 && !m_b && !m_c && m_d == 1 && !m_e && !m_f; }
|
|
|
|
|