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

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

#ifndef ClipStack_DEFINED
#define ClipStack_DEFINED

#include "include/core/SkMatrix.h"
#include "include/core/SkRect.h"
#include "include/core/SkRefCnt.h"
#include "include/core/SkShader.h"
#include "include/private/base/SkAssert.h"
#include "include/private/base/SkDebug.h"
#include "include/private/base/SkTypeTraits.h"
#include "src/base/SkTBlockList.h"
#include "src/gpu/ResourceKey.h"
#include "src/gpu/ganesh/GrClip.h"
#include "src/gpu/ganesh/GrFragmentProcessor.h"
#include "src/gpu/ganesh/geometry/GrShape.h"

#include <cstdint>
#include <memory>
#include <type_traits>

class GrAppliedClip;
class GrDrawOp;
class GrProxyProvider;
class GrRecordingContext;
class SkPath;
class SkRRect;
enum class GrAA : bool;
enum class GrAAType : unsigned int;
enum class SkClipOp;

namespace skgpu {
namespace ganesh {
class SurfaceDrawContext;
}
}  // namespace skgpu

namespace skgpu::ganesh {

class ClipStack final : public GrClip {};

// Clip element iteration
class ClipStack::ElementIter {};

ClipStack::ElementIter ClipStack::begin() const {}

ClipStack::ElementIter ClipStack::end() const {}

}  // namespace skgpu::ganesh

#endif // ClipStack_DEFINED