From 2a22e10ab2946c5590cd2a258427ce3ccfca9bfa Mon Sep 17 00:00:00 2001 From: "vandebo@chromium.org" Date: Tue, 25 Jan 2011 21:01:34 +0000 Subject: Add Truetype and Type 1 font embedding support Sorry this is such a large CL. It was very exploratory for me to make this work. - Add an interface to SkFontHost to retrieve font information and provide NULL implementations on all platforms except Linux. - Segment large Type 1 fonts into fonts with shared resources with 255 glyphs each. - Convert the various Type 1 formats to the form PDF wants. - Update font as we draw text instead of as part of the graphical state. - Remove built-in font support, we can't really use it. Other changes I can pull out to a separate CL if you like. - Add SkTScopedPtr class. - Fix double free of resources. - Fix bug in resource unique-ifying code. - Don't print anything for any empty clip path. - Fix copy paste error - MiterLimit. - Fix sign extension bug in SkPDFString - Fix FlateTest rename that was missed on a previous commit. Review URL: http://codereview.appspot.com/4082042 git-svn-id: http://skia.googlecode.com/svn/trunk@728 2bbb7eff-a529-9590-31e7-b0007b416f81 --- src/ports/SkFontHost_win.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/ports/SkFontHost_win.cpp') diff --git a/src/ports/SkFontHost_win.cpp b/src/ports/SkFontHost_win.cpp index a1114d90d5..4f3f198bd3 100644 --- a/src/ports/SkFontHost_win.cpp +++ b/src/ports/SkFontHost_win.cpp @@ -463,6 +463,12 @@ SkTypeface* SkFontHost::Deserialize(SkStream* stream) { return NULL; } +// static +SkPDFTypefaceInfo* SkFontHost::GetPDFTypefaceInfo(uint32_t fontID) { + SkASSERT(!"SkFontHost::GetPDFTypefaceInfo unimplemented"); + return NULL; +} + SkTypeface* SkFontHost::CreateTypefaceFromStream(SkStream* stream) { //Should not be used on Windows, keep linker happy -- cgit v1.2.3