chromium/third_party/skia/src/core/SkPathUtils.cpp

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

#include "include/core/SkPathUtils.h"

#include "include/core/SkMatrix.h"
#include "include/core/SkPaint.h"
#include "include/core/SkPath.h"
#include "include/core/SkPathEffect.h"
#include "include/core/SkStrokeRec.h"
#include "src/core/SkMatrixPriv.h"

namespace skpathutils {

bool FillPathWithPaint(const SkPath& src, const SkPaint& paint, SkPath* dst) {}

bool FillPathWithPaint(const SkPath& src, const SkPaint& paint, SkPath* dst,
                       const SkRect* cullRect, SkScalar resScale) {}

bool FillPathWithPaint(const SkPath& src, const SkPaint& paint, SkPath* dst,
                       const SkRect* cullRect, const SkMatrix& ctm) {}

} // namespace skpathutils

bool FillPathWithPaint(const SkPath& src,
                       const SkPaint& paint,
                       SkPath* dst,
                       const SkRect* cullRect,
                       SkScalar resScale) {}

bool FillPathWithPaint(const SkPath& src,
                       const SkPaint& paint,
                       SkPath* dst,
                       const SkRect* cullRect,
                       const SkMatrix& ctm) {}

bool FillPathWithPaint(const SkPath& src, const SkPaint& paint, SkPath* dst) {}