| OLD | NEW |
| 1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | 6 |
| 7 #include "core/fxcrt/fx_system.h" | 7 #include "core/fxge/android/fpf_skiafont.h" |
| 8 | |
| 9 #if _FX_OS_ == _FX_ANDROID_ | |
| 10 | 8 |
| 11 #include <algorithm> | 9 #include <algorithm> |
| 12 | 10 |
| 13 #include "core/fxge/android/fpf_skiafont.h" | 11 #include "core/fxcrt/fx_system.h" |
| 14 #include "core/fxge/android/fpf_skiafontmgr.h" | 12 #include "core/fxge/android/fpf_skiafontmgr.h" |
| 15 #include "core/fxge/fx_freetype.h" | 13 #include "core/fxge/fx_freetype.h" |
| 16 | 14 |
| 17 #define FPF_EM_ADJUST(em, a) (em == 0 ? (a) : (a)*1000 / em) | 15 #define FPF_EM_ADJUST(em, a) (em == 0 ? (a) : (a)*1000 / em) |
| 18 | 16 |
| 19 CFPF_SkiaFont::CFPF_SkiaFont() | 17 CFPF_SkiaFont::CFPF_SkiaFont() |
| 20 : m_pFontMgr(nullptr), | 18 : m_pFontMgr(nullptr), |
| 21 m_pFontDes(nullptr), | 19 m_pFontDes(nullptr), |
| 22 m_Face(nullptr), | 20 m_Face(nullptr), |
| 23 m_dwStyle(0), | 21 m_dwStyle(0), |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 if (!m_Face) | 206 if (!m_Face) |
| 209 return FALSE; | 207 return FALSE; |
| 210 | 208 |
| 211 m_dwStyle = dwStyle; | 209 m_dwStyle = dwStyle; |
| 212 m_uCharset = uCharset; | 210 m_uCharset = uCharset; |
| 213 m_pFontMgr = pFontMgr; | 211 m_pFontMgr = pFontMgr; |
| 214 m_pFontDes = pFontDes; | 212 m_pFontDes = pFontDes; |
| 215 m_dwRefCount = 1; | 213 m_dwRefCount = 1; |
| 216 return TRUE; | 214 return TRUE; |
| 217 } | 215 } |
| 218 | |
| 219 #endif // _FX_OS_ == _FX_ANDROID_ | |
| OLD | NEW |