| Index: include/ports/SkTypeface_android.h
|
| diff --git a/include/ports/SkTypeface_android.h b/include/ports/SkTypeface_android.h
|
| index e46c8f8ac3ecfc1f28e74f420d58094af2fc5ddf..c199bee29e1883ea37b2a103be85f4fc58c9969b 100644
|
| --- a/include/ports/SkTypeface_android.h
|
| +++ b/include/ports/SkTypeface_android.h
|
| @@ -39,39 +39,5 @@ SK_API bool SkGetFallbackFamilyNameForChar(SkUnichar uni, const char* lang, SkSt
|
| SK_API void SkUseTestFontConfigFile(const char* mainconf, const char* fallbackconf,
|
| const char* fontsdir);
|
|
|
| -/**
|
| - * 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.
|
| - */
|
| -SkTypeface* SkAndroidNextLogicalTypeface(SkFontID currFontID, SkFontID origFontID,
|
| - const SkPaintOptionsAndroid& options);
|
| -
|
| -/**
|
| - * Given a glyphID (built using fallback font chaining) and its origin typeface
|
| - * return the actual typeface within the fallback chain that this glyphID
|
| - * resolves to. If no suitable typeface is found then NULL is returned. However,
|
| - * if returned typeface is not NULL it is assumed to be globally cached so the
|
| - * caller need not ref it.
|
| - *
|
| - * Optionally, if lower/upper bound params are provided and the returned
|
| - * typeface is not NULL, then these params are populated with the range of
|
| - * glyphIDs that this typeface is capable of resolving. The lower bound is
|
| - * inclusive while the upper bound is exclusive.
|
| - */
|
| -SkTypeface* SkGetTypefaceForGlyphID(uint16_t glyphID, const SkTypeface* origTypeface,
|
| - const SkPaintOptionsAndroid& options,
|
| - int* lowerBounds = NULL, int* upperBounds = NULL);
|
| -
|
| #endif // #ifdef SK_BUILD_FOR_ANDROID
|
| #endif // #ifndef SkTypeface_android_DEFINED
|
|
|