Searched defs:skia_style (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/ui/gfx/
H A Drender_text.cc49 int skia_style = SkTypeface::kNormal; local
50 skia_style |= (font_style & gfx::Font::BOLD) ? SkTypeface::kBold : 0;
51 skia_style |= (font_style & gfx::Font::ITALIC) ? SkTypeface::kItalic : 0;
52 return static_cast<SkTypeface::Style>(skia_style);
184 SkTypeface::Style skia_style = ConvertFontStyleToSkiaTypefaceStyle(style); local
186 skia::AdoptRef(SkTypeface::CreateFromName(family.c_str(), skia_style));
193 paint_.setFakeBoldText((skia_style & SkTypeface::kBold) &&

Completed in 145 milliseconds