chromium/third_party/skia/src/gpu/ganesh/PathRenderer.h

/*
 * Copyright 2011 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef PathRenderer_DEFINED
#define PathRenderer_DEFINED

#include "include/core/SkRefCnt.h"
#include "include/private/base/SkAssert.h"
#include "include/private/base/SkDebug.h"
#include "src/gpu/ganesh/GrPaint.h"

#include <string.h>

class GrCaps;
class GrClip;
class GrHardClip;
class GrRecordingContext;
class GrRenderTargetProxy;
class GrStyledShape;
class SkMatrix;
class SkPath;
class SkSurfaceProps;
enum class GrAA : bool;
enum class GrAAType : unsigned int;
struct GrUserStencilSettings;
struct SkIRect;
struct SkISize;
struct SkRect;

namespace skgpu::ganesh {

class SurfaceDrawContext;

/**
 *  Base class for drawing paths into a OpsTask.
 */
class PathRenderer : public SkRefCnt {};

}  // namespace skgpu::ganesh

#endif // PathRenderer_DEFINED