Chromium Code Reviews| Index: Source/platform/transforms/MatrixTransformOperation.h |
| diff --git a/Source/platform/transforms/MatrixTransformOperation.h b/Source/platform/transforms/MatrixTransformOperation.h |
| index ce842c13a00a42165fc255d1b1cef7acc02c4f8e..be831935f9eeed29b5f899661d47dcd7679d9719 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 canBlendWith(const TransformOperation& other) const |
| + { |
| + return false; |
| + } |
|
Ian Vollick
2014/06/18 15:38:06
nit: pls add a line of ws.
awoloszyn
2014/06/18 18:31:08
Done.
|
| private: |
| virtual bool isIdentity() const OVERRIDE { return m_a == 1 && !m_b && !m_c && m_d == 1 && !m_e && !m_f; } |