diff options
author | reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-03-26 12:29:05 +0000 |
---|---|---|
committer | reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-03-26 12:29:05 +0000 |
commit | 1fa793fa6b83219a266124aa70455540b98a4633 (patch) | |
tree | dd26f57cfb41dee4002d420731ee369e5f7397e4 /include/core | |
parent | 02c77648ce7b7a8016842603ad0892e0095a6bd6 (diff) |
remove SkFontHost::NextLogicalFont, and add android-specific function
SkAndroidNextLogicalTypeface
git-svn-id: http://skia.googlecode.com/svn/trunk@8386 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/core')
-rw-r--r-- | include/core/SkFontHost.h | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/include/core/SkFontHost.h b/include/core/SkFontHost.h index 317923f344..4c5013fe4a 100644 --- a/include/core/SkFontHost.h +++ b/include/core/SkFontHost.h @@ -92,26 +92,6 @@ public: static LCDOrder GetSubpixelOrder(); private: - - /** - * DEPRECATED -- will be DESTROYED - * - * Given a "current" fontID, return a ref to the next logical typeface - * when searching fonts for a given unicode value. Typically the caller - * will query a given font, and if a unicode value is not supported, they - * will call this, and if 0 is not returned, will search that font, and so - * on. This process must be finite, and when the fonthost sees a - * font with no logical successor, it must return NULL. - * - * The original fontID is also provided. This is the initial font that was - * stored in the typeface of the caller. It is provided as an aid to choose - * the best next logical font. e.g. If the original font was bold or serif, - * but the 2nd in the logical chain was plain, then a subsequent call to - * get the 3rd can still inspect the original, and try to match its - * stylistic attributes. - */ - static SkTypeface* NextLogicalTypeface(SkFontID currFontID, SkFontID origFontID); - /** Return a new, closest matching typeface given either an existing family (specified by a typeface in that family) or by a familyName and a requested style. |