OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007 Apple Computer, Inc. | 2 * Copyright (C) 2006, 2007 Apple Computer, Inc. |
3 * Copyright (c) 2006, 2007, 2008, 2009, 2012 Google Inc. All rights reserved. | 3 * Copyright (c) 2006, 2007, 2008, 2009, 2012 Google Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
7 * met: | 7 * met: |
8 * | 8 * |
9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 24 matching lines...) Expand all Loading... |
35 #include "RuntimeEnabledFeatures.h" | 35 #include "RuntimeEnabledFeatures.h" |
36 #include "SkFontMgr.h" | 36 #include "SkFontMgr.h" |
37 #include "SkTypeface_win.h" | 37 #include "SkTypeface_win.h" |
38 #include "platform/fonts/FontDescription.h" | 38 #include "platform/fonts/FontDescription.h" |
39 #include "platform/fonts/SimpleFontData.h" | 39 #include "platform/fonts/SimpleFontData.h" |
40 #include "platform/fonts/harfbuzz/FontPlatformDataHarfbuzz.h" | 40 #include "platform/fonts/harfbuzz/FontPlatformDataHarfbuzz.h" |
41 #include "platform/fonts/win/FontFallbackWin.h" | 41 #include "platform/fonts/win/FontFallbackWin.h" |
42 | 42 |
43 namespace WebCore { | 43 namespace WebCore { |
44 | 44 |
| 45 HashMap<String, SkTypeface*>* FontCache::s_sideloadedFonts = 0; |
| 46 |
| 47 // static |
| 48 void FontCache::addSideloadedFont(SkTypeface* typeface) |
| 49 { |
| 50 if (!s_sideloadedFonts) |
| 51 s_sideloadedFonts = new HashMap<String, SkTypeface*>; |
| 52 SkString name; |
| 53 typeface->getFamilyName(&name); |
| 54 s_sideloadedFonts->set(name.c_str(), typeface); |
| 55 } |
| 56 |
45 FontCache::FontCache() | 57 FontCache::FontCache() |
46 : m_purgePreventCount(0) | 58 : m_purgePreventCount(0) |
47 { | 59 { |
48 SkFontMgr* fontManager; | 60 SkFontMgr* fontManager; |
49 | 61 |
50 if (s_useDirectWrite) { | 62 if (s_useDirectWrite) { |
51 fontManager = SkFontMgr_New_DirectWrite(s_directWriteFactory); | 63 fontManager = SkFontMgr_New_DirectWrite(s_directWriteFactory); |
52 } else { | 64 } else { |
53 fontManager = SkFontMgr_New_GDI(); | 65 fontManager = SkFontMgr_New_GDI(); |
54 // Subpixel text positioning is not supported by the GDI backend. | 66 // Subpixel text positioning is not supported by the GDI backend. |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
263 result->setMinSizeForAntiAlias( | 275 result->setMinSizeForAntiAlias( |
264 minSizeForAntiAlias(fontDescription.script())); | 276 minSizeForAntiAlias(fontDescription.script())); |
265 if (fontRequiresFullHinting(family)) | 277 if (fontRequiresFullHinting(family)) |
266 result->setHinting(SkPaint::kFull_Hinting); | 278 result->setHinting(SkPaint::kFull_Hinting); |
267 } | 279 } |
268 | 280 |
269 return result; | 281 return result; |
270 } | 282 } |
271 | 283 |
272 } | 284 } |
OLD | NEW |