Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
SkPathEnums.h
Go to the documentation of this file.
1/*
2 * Copyright 2022 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 * This file contains private enums related to paths. See also skbug.com/10670
8 */
9
10#ifndef SkPathEnums_DEFINED
11#define SkPathEnums_DEFINED
12
13enum class SkPathConvexity {
14 kConvex,
17};
18
20 kCW, // == SkPathDirection::kCW
21 kCCW, // == SkPathDirection::kCCW
23};
24
25#endif
SkPathConvexity
Definition SkPathEnums.h:13
SkPathFirstDirection
Definition SkPathEnums.h:19