| 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" |
| (...skipping 1656 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1667 if (isLCD(*rec) && !isAxisAligned(*rec)) { | 1667 if (isLCD(*rec) && !isAxisAligned(*rec)) { |
| 1668 rec->fMaskFormat = SkMask::kA8_Format; | 1668 rec->fMaskFormat = SkMask::kA8_Format; |
| 1669 } | 1669 } |
| 1670 #endif | 1670 #endif |
| 1671 | 1671 |
| 1672 if (!fCanBeLCD && isLCD(*rec)) { | 1672 if (!fCanBeLCD && isLCD(*rec)) { |
| 1673 rec->fMaskFormat = SkMask::kA8_Format; | 1673 rec->fMaskFormat = SkMask::kA8_Format; |
| 1674 rec->fFlags &= ~SkScalerContext::kGenA8FromLCD_Flag; | 1674 rec->fFlags &= ~SkScalerContext::kGenA8FromLCD_Flag; |
| 1675 } | 1675 } |
| 1676 } | 1676 } |
| 1677 |
| 1678 /////////////////////////////////////////////////////////////////////////////// |
| 1679 |
| 1680 #include "SkFontMgr.h" |
| 1681 |
| 1682 SkFontMgr* SkFontMgr::Factory() { |
| 1683 // todo |
| 1684 return NULL; |
| 1685 } |
| OLD | NEW |