chromium/third_party/skia/modules/sksg/include/SkSGGeometryNode.h

/*
 * 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 SkSGGeometryNode_DEFINED
#define SkSGGeometryNode_DEFINED

#include "modules/sksg/include/SkSGNode.h"

class SkCanvas;
class SkPaint;
class SkPath;
struct SkPoint;

namespace sksg {

/**
 * Base class for nodes which provide 'geometry' (as opposed to paint)
 * for drawing.
 *
 * Think SkRect, SkPath, etc.
 */
class GeometryNode : public Node {};

} // namespace sksg

#endif // SkSGGeometryNode_DEFINED