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

  /external/skia/src/core/
SkFont.cpp 8 #include "SkFont.h"
16 SkFont::SkFont(SkTypeface* face, SkScalar size, SkScalar scaleX, SkScalar skewX, MaskType mt,
31 SkFont* SkFont::Create(SkTypeface* face, SkScalar size, SkScalar scaleX, SkScalar skewX,
43 return new SkFont(face, size, scaleX, skewX, mt, flags);
46 SkFont* SkFont::Create(SkTypeface* face, SkScalar size, MaskType mt, uint32_t flags) {
47 return SkFont::Create(face, size, 1, 0, mt, flags);
50 SkFont* SkFont::cloneWithSize(SkScalar newSize) const
    [all...]
  /external/skia/include/core/
SkFont.h 25 1. The Hinting enum in SkPaint is gone entirely, absorbed into SkFont's flags.
45 SkFont would absorb these:
66 SkFont has a mask-type: BW, AA, LCD
73 class SkFont : public SkRefCnt {
120 static SkFont* Create(SkTypeface*, SkScalar size, MaskType, uint32_t flags);
121 static SkFont* Create(SkTypeface*, SkScalar size, SkScalar scaleX, SkScalar skewX,
128 SkFont* cloneWithSize(SkScalar size) const;
148 static SkFont* Testing_CreateFromPaint(const SkPaint&);
155 SkFont(SkTypeface*, SkScalar size, SkScalar scaleX, SkScalar skewX, MaskType, uint32_t flags);
156 virtual ~SkFont();
    [all...]

Completed in 3554 milliseconds