/* * Copyright 2019 Google LLC. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef SkPathTypes_DEFINED #define SkPathTypes_DEFINED enum class SkPathFillType { … }; static inline bool SkPathFillType_IsEvenOdd(SkPathFillType ft) { … } static inline bool SkPathFillType_IsInverse(SkPathFillType ft) { … } static inline SkPathFillType SkPathFillType_ConvertToNonInverse(SkPathFillType ft) { … } enum class SkPathDirection { … }; enum SkPathSegmentMask { … }; enum class SkPathVerb { … }; #endif