| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2006 The Android Open Source Project | 3 * Copyright 2006 The Android Open Source Project |
| 4 * | 4 * |
| 5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
| 6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 #include "SkAdvancedTypefaceMetrics.h" | 9 #include "SkAdvancedTypefaceMetrics.h" |
| 10 #include "SkBase64.h" | 10 #include "SkBase64.h" |
| 11 #include "SkColorPriv.h" | 11 #include "SkColorPriv.h" |
| 12 #include "SkData.h" | 12 #include "SkData.h" |
| 13 #include "SkDescriptor.h" | 13 #include "SkDescriptor.h" |
| 14 #include "SkFontDescriptor.h" | 14 #include "SkFontDescriptor.h" |
| 15 #include "SkFontHost.h" | |
| 16 #include "SkGlyph.h" | 15 #include "SkGlyph.h" |
| 17 #include "SkHRESULT.h" | 16 #include "SkHRESULT.h" |
| 18 #include "SkMaskGamma.h" | 17 #include "SkMaskGamma.h" |
| 19 #include "SkMatrix22.h" | 18 #include "SkMatrix22.h" |
| 20 #include "SkOTTable_maxp.h" | 19 #include "SkOTTable_maxp.h" |
| 21 #include "SkOTTable_name.h" | 20 #include "SkOTTable_name.h" |
| 22 #include "SkOTUtils.h" | 21 #include "SkOTUtils.h" |
| 23 #include "SkPath.h" | 22 #include "SkPath.h" |
| 24 #include "SkSFNTHeader.h" | 23 #include "SkSFNTHeader.h" |
| 25 #include "SkStream.h" | 24 #include "SkStream.h" |
| (...skipping 2487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2513 | 2512 |
| 2514 private: | 2513 private: |
| 2515 SkTDArray<ENUMLOGFONTEX> fLogFontArray; | 2514 SkTDArray<ENUMLOGFONTEX> fLogFontArray; |
| 2516 }; | 2515 }; |
| 2517 | 2516 |
| 2518 /////////////////////////////////////////////////////////////////////////////// | 2517 /////////////////////////////////////////////////////////////////////////////// |
| 2519 | 2518 |
| 2520 SkFontMgr* SkFontMgr_New_GDI() { | 2519 SkFontMgr* SkFontMgr_New_GDI() { |
| 2521 return SkNEW(SkFontMgrGDI); | 2520 return SkNEW(SkFontMgrGDI); |
| 2522 } | 2521 } |
| OLD | NEW |