Home | History | Annotate | Download | only in ports
      1 
      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 
      9 
     10 #include "SkFontHost.h"
     11 #include "SkScalerContext.h"
     12 
     13 SkTypeface* SkFontHost::CreateTypeface(const SkTypeface* familyFace,
     14                                      const char famillyName[],
     15                                      SkTypeface::Style style) {
     16     SkDEBUGFAIL("SkFontHost::FindTypeface unimplemented");
     17     return NULL;
     18 }
     19 
     20 SkTypeface* SkFontHost::CreateTypefaceFromStream(SkStream*) {
     21     SkDEBUGFAIL("SkFontHost::CreateTypeface unimplemented");
     22     return NULL;
     23 }
     24 
     25 SkTypeface* SkFontHost::CreateTypefaceFromFile(char const*) {
     26     SkDEBUGFAIL("SkFontHost::CreateTypefaceFromFile unimplemented");
     27     return NULL;
     28 }
     29 
     30 ///////////////////////////////////////////////////////////////////////////////
     31 
     32 #include "SkFontMgr.h"
     33 
     34 SkFontMgr* SkFontMgr::Factory() {
     35     // todo
     36     return NULL;
     37 }
     38