| Index: include/core/SkPath.h
|
| diff --git a/include/core/SkPath.h b/include/core/SkPath.h
|
| index a6674d9afb4e65cc024ee8a155d5f4f4b4869bfe..9b392ae533903366207b9f974da85fb40b6d0e9b 100644
|
| --- a/include/core/SkPath.h
|
| +++ b/include/core/SkPath.h
|
| @@ -133,7 +133,6 @@ public:
|
| void setConvexity(Convexity);
|
|
|
| /**
|
| - * DEPRECATED: use getConvexity()
|
| * Returns true if the path is flagged as being convex. This is not a
|
| * confirmed by any analysis, it is just the value set earlier.
|
| */
|
| @@ -142,12 +141,12 @@ public:
|
| }
|
|
|
| /**
|
| - * DEPRECATED: use setConvexity()
|
| * Set the isConvex flag to true or false. Convex paths may draw faster if
|
| * this flag is set, though setting this to true on a path that is in fact
|
| * not convex can give undefined results when drawn. Paths default to
|
| * isConvex == false
|
| */
|
| + SK_ATTR_DEPRECATED("use setConvexity")
|
| void setIsConvex(bool isConvex) {
|
| this->setConvexity(isConvex ? kConvex_Convexity : kConcave_Convexity);
|
| }
|
|
|