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 13 enum class SkPathConvexity { 14 kConvex, 15 kConcave, 16 kUnknown, 17 }; 18 19 enum class SkPathFirstDirection { 20 kCW, // == SkPathDirection::kCW 21 kCCW, // == SkPathDirection::kCCW 22 kUnknown, 23 }; 24 25 #endif 26