Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2044)

Unified Diff: Source/platform/transforms/Matrix3DTransformOperation.h

Issue 328333003: Adding Blink-side 3d Box and Bounds calculations to TransformOperations (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/platform/transforms/Matrix3DTransformOperation.h
diff --git a/Source/platform/transforms/Matrix3DTransformOperation.h b/Source/platform/transforms/Matrix3DTransformOperation.h
index 6ac8e0e4cda3e4a36801958f2e1645297e828e73..086ec7f6dcc12f626193f005b76b11782da55b64 100644
--- a/Source/platform/transforms/Matrix3DTransformOperation.h
+++ b/Source/platform/transforms/Matrix3DTransformOperation.h
@@ -39,6 +39,11 @@ public:
TransformationMatrix matrix() const {return m_matrix; }
+ virtual bool canBlendWith(const TransformOperation& other) const
+ {
+ return false;
+ }
+
private:
virtual bool isIdentity() const OVERRIDE { return m_matrix.isIdentity(); }

Powered by Google App Engine
This is Rietveld 408576698