| 20 | Path::~Path() = default; |
| 21 | |
| 22 | static SkPathDirection getPathDirection(bool clockwise) { |
| 23 | return clockwise ? SkPathDirection::kCW : SkPathDirection::kCCW; |
| 24 | } |
| 25 | |
| 26 | Path& Path::operator=(Path&& other) noexcept { |
| 27 | if (&other != this) { |
no outgoing calls
no test coverage detected