OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2006 The Android Open Source Project | 2 * Copyright 2006 The Android Open Source Project |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #include "SkTypes.h" // Keep this before any #ifdef ... | 8 #include "SkTypes.h" // Keep this before any #ifdef ... |
9 #if defined(SK_BUILD_FOR_MAC) || defined(SK_BUILD_FOR_IOS) | 9 #if defined(SK_BUILD_FOR_MAC) || defined(SK_BUILD_FOR_IOS) |
10 | 10 |
(...skipping 11 matching lines...) Expand all Loading... |
22 #include "SkAdvancedTypefaceMetrics.h" | 22 #include "SkAdvancedTypefaceMetrics.h" |
23 #include "SkCGUtils.h" | 23 #include "SkCGUtils.h" |
24 #include "SkColorPriv.h" | 24 #include "SkColorPriv.h" |
25 #include "SkDescriptor.h" | 25 #include "SkDescriptor.h" |
26 #include "SkEndian.h" | 26 #include "SkEndian.h" |
27 #include "SkFloatingPoint.h" | 27 #include "SkFloatingPoint.h" |
28 #include "SkFontDescriptor.h" | 28 #include "SkFontDescriptor.h" |
29 #include "SkFontMgr.h" | 29 #include "SkFontMgr.h" |
30 #include "SkGlyph.h" | 30 #include "SkGlyph.h" |
31 #include "SkMaskGamma.h" | 31 #include "SkMaskGamma.h" |
| 32 #include "SkMathPriv.h" |
32 #include "SkMutex.h" | 33 #include "SkMutex.h" |
33 #include "SkOTTable_glyf.h" | 34 #include "SkOTTable_glyf.h" |
34 #include "SkOTTable_head.h" | 35 #include "SkOTTable_head.h" |
35 #include "SkOTTable_hhea.h" | 36 #include "SkOTTable_hhea.h" |
36 #include "SkOTTable_loca.h" | 37 #include "SkOTTable_loca.h" |
37 #include "SkOTUtils.h" | 38 #include "SkOTUtils.h" |
38 #include "SkOnce.h" | 39 #include "SkOnce.h" |
39 #include "SkPaint.h" | 40 #include "SkPaint.h" |
40 #include "SkPath.h" | 41 #include "SkPath.h" |
41 #include "SkSFNTHeader.h" | 42 #include "SkSFNTHeader.h" |
(...skipping 2534 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2576 | 2577 |
2577 return SkSafeRef(GetDefaultFace()); | 2578 return SkSafeRef(GetDefaultFace()); |
2578 } | 2579 } |
2579 }; | 2580 }; |
2580 | 2581 |
2581 /////////////////////////////////////////////////////////////////////////////// | 2582 /////////////////////////////////////////////////////////////////////////////// |
2582 | 2583 |
2583 SkFontMgr* SkFontMgr::Factory() { return new SkFontMgr_Mac; } | 2584 SkFontMgr* SkFontMgr::Factory() { return new SkFontMgr_Mac; } |
2584 | 2585 |
2585 #endif//defined(SK_BUILD_FOR_MAC) || defined(SK_BUILD_FOR_IOS) | 2586 #endif//defined(SK_BUILD_FOR_MAC) || defined(SK_BUILD_FOR_IOS) |
OLD | NEW |