/* * Copyright 2011 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef SkTypeface_mac_DEFINED #define SkTypeface_mac_DEFINED #include "SkTypeface.h" #if defined(SK_BUILD_FOR_MAC) || defined(SK_BUILD_FOR_IOS) #include #ifdef SK_BUILD_FOR_MAC #import #endif #ifdef SK_BUILD_FOR_IOS #include #endif /** * Like the other Typeface create methods, this returns a new reference to the * corresponding typeface for the specified CTFontRef. The caller must call * unref() when it is finished. * * The CFTypeRef parameter, if provided, will be kept referenced for the * lifetime of the SkTypeface. This was introduced as a means to work around * https://crbug.com/413332 . */ SK_API extern SkTypeface* SkCreateTypefaceFromCTFont(CTFontRef, CFTypeRef = NULL); /** * Returns the platform-specific CTFontRef handle for a * given SkTypeface. Note that the returned CTFontRef gets * released when the source SkTypeface is destroyed. * * This method is deprecated. It may only be used by Blink Mac * legacy code in special cases related to text-shaping * with AAT fonts, clipboard handling and font fallback. * See https://code.google.com/p/skia/issues/detail?id=3408 */ SK_API extern CTFontRef SkTypeface_GetCTFontRef(const SkTypeface* face); #endif // defined(SK_BUILD_FOR_MAC) || defined(SK_BUILD_FOR_IOS) #endif // SkTypeface_mac_DEFINED