diff options
author | caryclark <caryclark@google.com> | 2016-02-19 07:40:34 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-02-19 07:40:34 -0800 |
commit | 449f7fcf7088bb67b86729bd4675a72c7580c443 (patch) | |
tree | fdcb34e1a457e1243d3bb3ca72007696d0de9706 /include | |
parent | e507ff0460f4f878214b9454fb5b9ab8d64d8063 (diff) |
fix iter to document close correctly
R=reed@google.com
BUG=skia:4950
GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1717623002
Review URL: https://codereview.chromium.org/1717623002
Diffstat (limited to 'include')
-rw-r--r-- | include/core/SkPath.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/core/SkPath.h b/include/core/SkPath.h index f4c2abf939..e1bc5e4d85 100644 --- a/include/core/SkPath.h +++ b/include/core/SkPath.h @@ -922,7 +922,7 @@ public: kQuad_Verb, //!< iter.next returns 3 points kConic_Verb, //!< iter.next returns 3 points + iter.conicWeight() kCubic_Verb, //!< iter.next returns 4 points - kClose_Verb, //!< iter.next returns 1 point (contour's moveTo pt) + kClose_Verb, //!< iter.next returns 0 points kDone_Verb, //!< iter.next returns 0 points }; |