/* * Copyright 2017 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef SkSGTransform_DEFINED #define SkSGTransform_DEFINED #include "SkSGEffectNode.h" #include "SkMatrix.h" namespace sksg { /** * Concrete node, wrapping an SkMatrix, with an optional parent Matrix (to allow chaining): * * M' = parent x M */ class Matrix : public Node { public: static sk_sp Make(const SkMatrix& m, sk_sp parent = nullptr) { return sk_sp(new Matrix(m, std::move(parent))); } ~Matrix() override; SG_ATTRIBUTE(Matrix, SkMatrix, fLocalMatrix) const SkMatrix& getTotalMatrix() const { return fTotalMatrix; } protected: Matrix(const SkMatrix&, sk_sp); SkRect onRevalidate(InvalidationController*, const SkMatrix&) override; private: sk_sp fParent; SkMatrix fLocalMatrix, fTotalMatrix; // cached during revalidation typedef Node INHERITED; }; /** * Concrete Effect node, binding a Matrix to a RenderNode. */ class Transform final : public EffectNode { public: static sk_sp Make(sk_sp child, sk_sp matrix) { return child && matrix ? sk_sp(new Transform(std::move(child), std::move(matrix))) : nullptr; } static sk_sp Make(sk_sp child, const SkMatrix& m) { return Make(std::move(child), Matrix::Make(m)); } ~Transform() override; const sk_sp& getMatrix() const { return fMatrix; } protected: void onRender(SkCanvas*) const override; SkRect onRevalidate(InvalidationController*, const SkMatrix&) override; private: Transform(sk_sp, sk_sp); const sk_sp fMatrix; typedef EffectNode INHERITED; }; } // namespace sksg #endif // SkSGTransform_DEFINED