skia2/experimental/sksg/SkSGEffectNode.h
Florin Malita 4aa4441186 Initial scene graph (SkSG)
Sketching a thin (as in close-to-skia-semantics) scene graph API, focused on
external animation, inval tracking and minimal repaint.

Only a few concrete classes/features so far:

* Rect/Color/Transform/Group
* basic inval tracking
* a trivial animated sample with inval visualization

Pretty much everything (especially naming) is volatile, so treat accordingly.

The interesting bits to review are likely in Node.{h,cpp} for inval and
SampleSGInval.cpp for usage.

Initial class hierarchy:

  * Node: invalidation/ancestors tracking
  |
   -- * RenderNode: onRender(SkCanvas)
  |   |
  |    -- * Draw (concrete): rendering a [geometry, paint] tuple
  |   |
  |    -- * Group (concrete): grouping multiple RenderNodes
  |   |
  |    -- * EffectNode: single-descendant effect wrapper
  |       |
  |        -- * Transform (concrete): transform effect
  |
   -- * PaintNode: onMakePaint()
  |   |
  |    -- * Color (concrete): SkColor paint wrapper
  |
   -- * GeometryNode: onComputeBounds(), onDraw(SkCanvas, SkPaint)
      |
       -- * Rect (concrete): SkRect wrapper

TBR=

Change-Id: Iacf9b773c181a7582ecd31ee968562f179d1aa1b
Reviewed-on: https://skia-review.googlesource.com/85502
Reviewed-by: Florin Malita <fmalita@chromium.org>
Commit-Queue: Florin Malita <fmalita@chromium.org>
2017-12-21 20:56:32 +00:00

39 lines
788 B
C++

/*
* 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 SkSGEffectNode_DEFINED
#define SkSGEffectNode_DEFINED
#include "SkSGRenderNode.h"
namespace sksg {
/**
* Base class for nodes which apply some transformation when rendering
* their descendants.
*
* This includes transforms, clipping, filters, etc.
*/
class EffectNode : public RenderNode {
protected:
explicit EffectNode(sk_sp<RenderNode>);
~EffectNode() override;
void onRender(SkCanvas*) const override;
void onRevalidate(InvalidationController*, const SkMatrix&) override;
private:
sk_sp<RenderNode> fChild;
typedef RenderNode INHERITED;
};
} // namespace sksg
#endif // SkSGEffectNode_DEFINED