Home | History | Annotate | Download | only in gfx

Lines Matching refs:skia_style

83   int skia_style = SkTypeface::kNormal;
84 skia_style |= (font_style & Font::BOLD) ? SkTypeface::kBold : 0;
85 skia_style |= (font_style & Font::ITALIC) ? SkTypeface::kItalic : 0;
86 return static_cast<SkTypeface::Style>(skia_style);
375 SkTypeface::Style skia_style = ConvertFontStyleToSkiaTypefaceStyle(style);
376 return skia::AdoptRef(SkTypeface::CreateFromName(family.c_str(), skia_style));