Lines Matching defs:SkFontStyle
14 class SK_API SkFontStyle {
48 constexpr SkFontStyle(int weight, int width, Slant slant) : fValue(
54 constexpr SkFontStyle() : SkFontStyle{kNormal_Weight, kNormal_Width, kUpright_Slant} { }
56 bool operator==(const SkFontStyle& rhs) const {
64 static constexpr SkFontStyle Normal() {
65 return SkFontStyle(kNormal_Weight, kNormal_Width, kUpright_Slant);
67 static constexpr SkFontStyle Bold() {
68 return SkFontStyle(kBold_Weight, kNormal_Width, kUpright_Slant);
70 static constexpr SkFontStyle Italic() {
71 return SkFontStyle(kNormal_Weight, kNormal_Width, kItalic_Slant );
73 static constexpr SkFontStyle BoldItalic() {
74 return SkFontStyle(kBold_Weight, kNormal_Width, kItalic_Slant );