aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/SkCanvas_Reference.bmh
diff options
context:
space:
mode:
authorGravatar Cary Clark <caryclark@skia.org>2017-07-31 11:48:27 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-07-31 16:49:12 +0000
commit579985ce4f5cdd34df4d72a25b3623b9bddcbbba (patch)
tree8433324b3b0e6754b95cbfb56a4863464fe618af /docs/SkCanvas_Reference.bmh
parentdf0e09feacb29290fe94d37f921731b18f2edae0 (diff)
fix self references
try removing self references in method definitions. If this creates awkward wording, it can always be allowed in another CL. Also tighten rules for identifying function references in include comments. R=briansoman@google.com, caryclark@google.com TBR=reed@google.com Bug: skia:6898 Change-Id: I1a0e6b2a76dacfe71d134deb4589fb74e6611a03 Reviewed-on: https://skia-review.googlesource.com/28624 Commit-Queue: Cary Clark <caryclark@skia.org> Reviewed-by: Cary Clark <caryclark@skia.org>
Diffstat (limited to 'docs/SkCanvas_Reference.bmh')
-rw-r--r--docs/SkCanvas_Reference.bmh24
1 files changed, 16 insertions, 8 deletions
diff --git a/docs/SkCanvas_Reference.bmh b/docs/SkCanvas_Reference.bmh
index 6644d5b680..338f2c3f9d 100644
--- a/docs/SkCanvas_Reference.bmh
+++ b/docs/SkCanvas_Reference.bmh
@@ -359,7 +359,8 @@ Used by subclasses with custom implementations for draw methods.
#Param width Zero or greater. ##
#Param height Zero or greater. ##
#Param props The LCD striping orientation and setting for device independent fonts.
- If nullptr, use Legacy_Font_Host settings. ##
+ If nullptr, use Legacy_Font_Host settings.
+#Param ##
#Return Canvas placeholder with dimensions. ##
@@ -2372,7 +2373,8 @@ This is private API to be used only by Android framework.
##
#Param rect The maximum allowed clip in device coordinates.
-Empty rect means max clip is not enforced. ##
+ Empty rect means max clip is not enforced.
+#Param ##
##
@@ -5240,11 +5242,14 @@ Image_Filter, and Blend_Mode. If Shader is provided it is treated as the Coons
patch texture; Blend_Mode mode combines Color colors and Shader if both are provided.
#Param cubics Point array cubics specifying the four cubics starting at the top left corner,
-in clockwise order, sharing every fourth point. The last cubic ends at the first point. ##
+ in clockwise order, sharing every fourth point. The last cubic ends at the first point.
+#Param ##
#Param colors Color array color associating colors with corners in top left, top right, bottom right,
-bottom left order. ##
+ bottom left order.
+#Param ##
#Param texCoords Point array texCoords mapping Shader as texture to corners in same order, if paint
-contains Shader; or nullptr. ##
+ contains Shader; or nullptr.
+#Param ##
#Param mode Blend_Mode for colors and Shader if present. ##
#Param paint Shader, Color_Filter, Blend_Mode, used to draw. ##
@@ -5288,11 +5293,14 @@ Image_Filter, (?) and Blend_Mode. If Shader is provided it is treated as the Coo
patch texture.
#Param cubics Point array cubics specifying the four cubics starting at the top left corner,
-in clockwise order, sharing every fourth point. The last cubic ends at the first point. ##
+ in clockwise order, sharing every fourth point. The last cubic ends at the first point.
+#Param ##
#Param colors Color array color associating colors with corners in top left, top right, bottom right,
-bottom left order; or nullptr. ##
+ bottom left order; or nullptr.
+#Param ##
#Param texCoords Point array texCoords mapping Shader as texture to corners in same order, if paint
-contains Shader; or nullptr. ##
+ contains Shader; or nullptr.
+#Param ##
#Param paint Shader, Color_Filter, Blend_Mode, used to draw. ##
#Example