/* * 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 DefaultPathRenderer_DEFINED #define DefaultPathRenderer_DEFINED #include "src/gpu/ganesh/PathRenderer.h" class GrClip; class GrPaint; class GrStyledShape; class SkMatrix; enum class GrAAType : unsigned int; struct GrUserStencilSettings; namespace skgpu::ganesh { class SurfaceDrawContext; /** * Subclass that renders the path using the stencil buffer to resolve fill rules * (e.g. winding, even-odd) */ class DefaultPathRenderer final : public PathRenderer { … }; } // namespace skgpu::ganesh #endif // DefaultPathRenderer_DEFINED