summaryrefslogtreecommitdiffstats
path: root/gfx/skia/skia/include/private/base/SkPathEnums.h
blob: 642bbb3489f7e41ae6d0e0d0e4de7bcd80a633e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * Copyright 2022 Google LLC
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 *
 * This file contains private enums related to paths. See also skbug.com/10670
 */

#ifndef SkPathEnums_DEFINED
#define SkPathEnums_DEFINED

enum class SkPathConvexity {
    kConvex,
    kConcave,
    kUnknown,
};

enum class SkPathFirstDirection {
    kCW,         // == SkPathDirection::kCW
    kCCW,        // == SkPathDirection::kCCW
    kUnknown,
};

#endif