aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/ports/SkFontMgr_fontconfig.h
blob: e0f41089d51d4a7ec599ffc66f9d011702c6b5e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * Copyright 2015 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef SkFontMgr_fontconfig_DEFINED
#define SkFontMgr_fontconfig_DEFINED

#include "SkRefCnt.h"
#include <fontconfig/fontconfig.h>

class SkFontMgr;

/** Create a font manager around a FontConfig instance.
 *  If 'fc' is NULL, will use a new default config.
 *  Takes ownership of 'fc' and will call FcConfigDestroy on it.
 */
SK_API sk_sp<SkFontMgr> SkFontMgr_New_FontConfig(FcConfig* fc);

#endif // #ifndef SkFontMgr_fontconfig_DEFINED