HomeSort by relevance Sort by last modified time
    Searched full:skfont (Results 1 - 8 of 8) 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 SkNEW_ARGS(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...]
SkTextBlob.cpp 16 // TODO(fmalita): replace with SkFont.
231 // This should go away when switching to SkFont
  /external/skia/tests/
FontMgrTest.cpp 13 #include "SkFont.h"
17 SkAutoTUnref<SkFont> font(SkFont::Create(NULL, 24, SkFont::kA8_MaskType, flags));
23 REPORTER_ASSERT(reporter, SkFont::kA8_MaskType == font->getMaskType());
37 SkAutoTUnref<SkFont> newFont(font->cloneWithSize(36));
45 font.reset(SkFont::Testing_CreateFromPaint(paint));
48 REPORTER_ASSERT(reporter, SkFont::kBW_MaskType == font->getMaskType());
FontObjTest.cpp 8 #include "SkFont.h"
26 SkAutoTUnref<SkFont> font(SkFont::Testing_CreateFromPaint(paint));
28 // Currently SkFont resolves null into the default, so only test if paint's is not null
106 SkAutoTUnref<SkFont> font(SkFont::Testing_CreateFromPaint(paint));
  /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...]
  /external/skia/experimental/PdfViewer/src/
SkPdfRenderer.cpp 308 SkPdfFont* skfont = pdfContext->fGraphicsState.fSkFont; local
309 if (skfont == NULL) {
310 skfont = SkPdfFont::Default();
327 if (skfont->encoding() == NULL) {
333 skfont->encoding()->decodeText(binary, &decoded);
348 skfont->drawText(decoded, &paint, pdfContext, canvas);
1487 SkPdfFont* skfont = SkPdfFont::fontFromPdfDictionary(pdfContext->fPdfDoc, fd); local
    [all...]
  /external/skia/gyp/
core.gypi 99 '<(skia_src_path)/core/SkFont.cpp',
  /external/skia/
Android.mk 146 src/core/SkFont.cpp \

Completed in 2636 milliseconds