2017-11-06 17:02:47 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2017 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DMFontMgr_DEFINED
|
|
|
|
#define DMFontMgr_DEFINED
|
|
|
|
|
|
|
|
#include "SkFontMgr.h"
|
|
|
|
|
|
|
|
// An SkFontMgr that always uses sk_tool_utils::create_portable_typeface().
|
|
|
|
|
|
|
|
namespace DM {
|
2017-11-14 15:34:48 +00:00
|
|
|
sk_sp<SkFontMgr> MakeFontMgr();
|
2017-11-06 17:02:47 +00:00
|
|
|
} // namespace DM
|
|
|
|
|
|
|
|
#endif//DMFontMgr_DEFINED
|