Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
SvgPathExtractor.h
Go to the documentation of this file.
1/*
2 * Copyright 2023 Google LLC
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef PathExtractor_DEFINED
9#define PathExtractor_DEFINED
10
11#include "tools/ToolUtils.h"
12
13#include <functional>
14
15class SkMatrix;
16class SkPaint;
17class SkPath;
18
19namespace ToolUtils {
20
21void ExtractPathsFromSVG(const char filepath[], std::function<PathSniffCallback>);
22
23} // namespace ToolUtils
24
25#endif
void ExtractPathsFromSVG(const char filepath[], std::function< PathSniffCallback >)