Searched defs:StrutStyle (Results 1 – 2 of 2) sorted by relevance
12 struct StrutStyle { struct15 const std::vector<SkString>& getFontFamilies() const { return fFontFamilies; } in getFontFamilies()16 void setFontFamilies(std::vector<SkString> families) { fFontFamilies = std::move(families); } in setFontFamilies()18 SkFontStyle getFontStyle() const { return fFontStyle; } in getFontStyle()19 void setFontStyle(SkFontStyle fontStyle) { fFontStyle = fontStyle; } in setFontStyle()21 SkScalar getFontSize() const { return fFontSize; } in getFontSize()22 void setFontSize(SkScalar size) { fFontSize = size; } in setFontSize()24 void setHeight(SkScalar height) { fHeight = height; } in setHeight()25 SkScalar getHeight() const { return fHeight; } in getHeight()27 void setLeading(SkScalar Leading) { fLeading = Leading; } in setLeading()[all …]
9 StrutStyle::StrutStyle() { in StrutStyle() function in skia::textlayout::StrutStyle