HomeSort by relevance Sort by last modified time
    Searched defs:SkFontStyle (Results 1 - 2 of 2) sorted by null

  /external/skia/src/core/
SkFontStyle.cpp 8 #include "SkFontStyle.h"
12 SkFontStyle::SkFontStyle() {
19 SkFontStyle::SkFontStyle(int weight, int width, Slant slant) {
26 SkFontStyle::SkFontStyle(unsigned oldStyle) {
28 fUnion.fR.fWeight = (oldStyle & SkTypeface::kBold) ? SkFontStyle::kBold_Weight
29 : SkFontStyle::kNormal_Weight;
30 fUnion.fR.fWidth = SkFontStyle::kNormal_Width
    [all...]
  /external/skia/include/core/
SkFontStyle.h 13 class SK_API SkFontStyle {
44 SkFontStyle();
45 SkFontStyle(int weight, int width, Slant);
47 explicit SkFontStyle(unsigned oldStyle);
49 bool operator==(const SkFontStyle& rhs) const {

Completed in 573 milliseconds