blob: c5267096b496588cb0e3e74d572166a0ba519711 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
2/*
3 * Copyright 2008 The Android Open Source Project
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
8
reed@android.com8a1c16f2008-12-17 15:59:43 +00009
10#include "SkFontHost.h"
borenet@google.com2ebe8902012-09-04 14:32:50 +000011#include "SkScalerContext.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000012
reed@android.comb1d9d2e2009-03-04 17:37:51 +000013SkTypeface* SkFontHost::CreateTypeface(const SkTypeface* familyFace,
reed@android.com8a1c16f2008-12-17 15:59:43 +000014 const char famillyName[],
15 SkTypeface::Style style) {
tomhudson@google.com0c00f212011-12-28 14:59:50 +000016 SkDEBUGFAIL("SkFontHost::FindTypeface unimplemented");
reed@android.com8a1c16f2008-12-17 15:59:43 +000017 return NULL;
18}
19
reed@android.comb1d9d2e2009-03-04 17:37:51 +000020SkTypeface* SkFontHost::CreateTypefaceFromStream(SkStream*) {
tomhudson@google.com0c00f212011-12-28 14:59:50 +000021 SkDEBUGFAIL("SkFontHost::CreateTypeface unimplemented");
reed@android.com8a1c16f2008-12-17 15:59:43 +000022 return NULL;
23}
24
joe.gregorioacb8fb02009-01-06 17:02:39 +000025SkTypeface* SkFontHost::CreateTypefaceFromFile(char const*) {
tomhudson@google.com0c00f212011-12-28 14:59:50 +000026 SkDEBUGFAIL("SkFontHost::CreateTypefaceFromFile unimplemented");
joe.gregorioacb8fb02009-01-06 17:02:39 +000027 return NULL;
28}
reed@google.com070da5e2013-03-27 20:01:49 +000029
30///////////////////////////////////////////////////////////////////////////////
31
32#include "SkFontMgr.h"
33
34SkFontMgr* SkFontMgr::Factory() {
35 // todo
36 return NULL;
37}