/* * Copyright 2015 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef TriangulatingPathRenderer_DEFINED #define TriangulatingPathRenderer_DEFINED #include "include/core/SkTypes.h" #if !defined(SK_ENABLE_OPTIMIZE_SIZE) #include "src/gpu/ganesh/PathRenderer.h" class GrStyledShape; namespace skgpu::ganesh { /** * Subclass that renders the path by converting to screen-space trapezoids plus * extra 1-pixel geometry for AA. */ class TriangulatingPathRenderer final : public PathRenderer { … }; } // namespace skgpu::ganesh #endif // SK_ENABLE_OPTIMIZE_SIZE #endif // TriangulatingPathRenderer_DEFINED