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

Unified Diff: third_party/WebKit/Source/platform/animation/CompositorTransformOperations.cpp

Issue 1616653002: CC Animation: Move files from cc_blink to Source/platform/animation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Fix copyrights and years. Created 4 years, 10 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: third_party/WebKit/Source/platform/animation/CompositorTransformOperations.cpp
diff --git a/third_party/WebKit/Source/platform/animation/CompositorTransformOperations.cpp b/third_party/WebKit/Source/platform/animation/CompositorTransformOperations.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..02c8a66c0c2c4fdb8fdaa0cb9beb23072c9d7848
--- /dev/null
+++ b/third_party/WebKit/Source/platform/animation/CompositorTransformOperations.cpp
@@ -0,0 +1,72 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "platform/animation/CompositorTransformOperations.h"
+
+#include "ui/gfx/transform.h"
+#include <algorithm>
+
+namespace blink {
+
+CompositorTransformOperations::CompositorTransformOperations()
+{
+}
+
+CompositorTransformOperations::~CompositorTransformOperations()
+{
+}
+
+const cc::TransformOperations& CompositorTransformOperations::asTransformOperations() const
+{
+ return m_transformOperations;
+}
+
+bool CompositorTransformOperations::canBlendWith(const blink::CompositorTransformOperations& other) const
+{
+ return m_transformOperations.CanBlendWith(other.m_transformOperations);
+}
+
+void CompositorTransformOperations::appendTranslate(double x, double y, double z)
+{
+ m_transformOperations.AppendTranslate(x, y, z);
+}
+
+void CompositorTransformOperations::appendRotate(double x, double y, double z, double degrees)
+{
+ m_transformOperations.AppendRotate(x, y, z, degrees);
+}
+
+void CompositorTransformOperations::appendScale(double x, double y, double z)
+{
+ m_transformOperations.AppendScale(x, y, z);
+}
+
+void CompositorTransformOperations::appendSkew(double x, double y)
+{
+ m_transformOperations.AppendSkew(x, y);
+}
+
+void CompositorTransformOperations::appendPerspective(double depth)
+{
+ m_transformOperations.AppendPerspective(depth);
+}
+
+void CompositorTransformOperations::appendMatrix(const SkMatrix44& matrix)
+{
+ gfx::Transform transform(gfx::Transform::kSkipInitialization);
+ transform.matrix() = matrix;
+ m_transformOperations.AppendMatrix(transform);
+}
+
+void CompositorTransformOperations::appendIdentity()
+{
+ m_transformOperations.AppendIdentity();
+}
+
+bool CompositorTransformOperations::isIdentity() const
+{
+ return m_transformOperations.IsIdentity();
+}
+
+} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698