aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkPath.h
diff options
context:
space:
mode:
authorGravatar Cary Clark <caryclark@skia.org>2018-04-03 11:49:10 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-04-03 16:33:10 +0000
commitecf548bf8aea7cd7dd4f0a0c01f8736395301523 (patch)
treeb96b55fa15d893e33394578b1314afa77f2ef861 /include/core/SkPath.h
parent186d08f621efcaf9960ffe4a1dd9e6703de8a698 (diff)
update autogenerated includes
SkImageInfo.h is generated for the first time. Minor corrections in the other includes. TBR=reed@google.com Bug: skia:6898 Change-Id: I9a16753e234ace3bfbcc5b58381347fd0e63b1c8 Reviewed-on: https://skia-review.googlesource.com/118168 Commit-Queue: Cary Clark <caryclark@skia.org> Reviewed-by: Cary Clark <caryclark@skia.org>
Diffstat (limited to 'include/core/SkPath.h')
-rw-r--r--include/core/SkPath.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/include/core/SkPath.h b/include/core/SkPath.h
index 1586f2bf60..2aab341505 100644
--- a/include/core/SkPath.h
+++ b/include/core/SkPath.h
@@ -1052,8 +1052,6 @@ public:
and half oval height. Oval begins at (oval.fRight, oval.centerY()) and continues
clockwise if dir is kCW_Direction, counterclockwise if dir is kCCW_Direction.
- This form is identical to addOval(oval, dir, 1).
-
@param oval bounds of ellipse added
@param dir SkPath::Direction to wind ellipse
*/
@@ -1278,15 +1276,15 @@ public:
bool getLastPt(SkPoint* lastPt) const;
/** Set last point to (x, y). If SkPoint array is empty, append kMove_Verb to
- verb array and (x, y) to SkPoint array.
+ verb array and append (x, y) to SkPoint array.
@param x set x-coordinate of last point
@param y set y-coordinate of last point
*/
void setLastPt(SkScalar x, SkScalar y);
- /** Set the last point on the path. If no points have been added, moveTo(p)
- is automatically called.
+ /** Set the last point on the path. If SkPoint array is empty, append kMove_Verb to
+ verb array and append p to SkPoint array.
@param p set value of last point
*/