| 45 | } |
| 46 | |
| 47 | void Path::addRoundRect(const Rect& bounds, Scalar radii[8], bool clockwise) { |
| 48 | getSkValue().addRoundRect(bounds.getSkValue(), &radii[0], getPathDirection(clockwise)); |
| 49 | } |
| 50 | |
| 51 | void Path::addRoundRect(const Rect& bounds, Scalar rx, Scalar ry, bool clockwise) { |
| 52 | getSkValue().addRoundRect(bounds.getSkValue(), rx, ry, getPathDirection(clockwise)); |
no test coverage detected