Lines Matching refs:thickness
63 SkScalar fUnderlineThickness; //!< underline thickness
65 SkScalar fStrikeoutThickness; //!< strikeout thickness
68 /** Returns true if SkFontMetrics has a valid underline thickness, and sets
69 thickness to that value. If the underline thickness is not valid,
70 return false, and ignore thickness.
72 @param thickness storage for underline width
75 bool hasUnderlineThickness(SkScalar* thickness) const {
77 *thickness = fUnderlineThickness;
98 /** Returns true if SkFontMetrics has a valid strikeout thickness, and sets
99 thickness to that value. If the underline thickness is not valid,
100 return false, and ignore thickness.
102 @param thickness storage for strikeout width
105 bool hasStrikeoutThickness(SkScalar* thickness) const {
107 *thickness = fStrikeoutThickness;