| 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/include/fxcrt/fx_ext.h" | 7 #include "core/include/fxcrt/fx_ext.h" |
| 8 #include "core/src/fxge/android/fx_fpf.h" | 8 #include "core/src/fxge/android/fx_fpf.h" |
| 9 | 9 |
| 10 #if _FX_OS_ == _FX_ANDROID_ | 10 #if _FX_OS_ == _FX_ANDROID_ |
| 11 #define FPF_SKIAMATCHWEIGHT_NAME1 62 | 11 #define FPF_SKIAMATCHWEIGHT_NAME1 62 |
| 12 #define FPF_SKIAMATCHWEIGHT_NAME2 60 | 12 #define FPF_SKIAMATCHWEIGHT_NAME2 60 |
| 13 #define FPF_SKIAMATCHWEIGHT_1 16 | 13 #define FPF_SKIAMATCHWEIGHT_1 16 |
| 14 #define FPF_SKIAMATCHWEIGHT_2 8 | 14 #define FPF_SKIAMATCHWEIGHT_2 8 |
| 15 #include "fpf_skiafontmgr.h" | 15 #include "core/src/fxge/android/fpf_skiafontmgr.h" |
| 16 #include "fpf_skiafont.h" | 16 #include "core/src/fxge/android/fpf_skiafont.h" |
| 17 #ifdef __cplusplus | 17 #ifdef __cplusplus |
| 18 extern "C" { | 18 extern "C" { |
| 19 #endif | 19 #endif |
| 20 static unsigned long FPF_SkiaStream_Read(FXFT_Stream stream, | 20 static unsigned long FPF_SkiaStream_Read(FXFT_Stream stream, |
| 21 unsigned long offset, | 21 unsigned long offset, |
| 22 unsigned char* buffer, | 22 unsigned char* buffer, |
| 23 unsigned long count) { | 23 unsigned long count) { |
| 24 IFX_FileRead* pFileRead = (IFX_FileRead*)stream->descriptor.pointer; | 24 IFX_FileRead* pFileRead = (IFX_FileRead*)stream->descriptor.pointer; |
| 25 if (!pFileRead) { | 25 if (!pFileRead) { |
| 26 return 0; | 26 return 0; |
| (...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 512 } | 512 } |
| 513 if (pOS2 && (pOS2->ulCodePageRange1 & (1 << 31))) { | 513 if (pOS2 && (pOS2->ulCodePageRange1 & (1 << 31))) { |
| 514 pFontDesc->m_dwStyle |= FXFONT_SYMBOLIC; | 514 pFontDesc->m_dwStyle |= FXFONT_SYMBOLIC; |
| 515 } | 515 } |
| 516 pFontDesc->m_dwCharsets = FPF_SkiaGetFaceCharset(pOS2); | 516 pFontDesc->m_dwCharsets = FPF_SkiaGetFaceCharset(pOS2); |
| 517 pFontDesc->m_iFaceIndex = face->face_index; | 517 pFontDesc->m_iFaceIndex = face->face_index; |
| 518 pFontDesc->m_iGlyphNum = face->num_glyphs; | 518 pFontDesc->m_iGlyphNum = face->num_glyphs; |
| 519 } | 519 } |
| 520 void CFPF_SkiaFontMgr::OutputSystemFonts() {} | 520 void CFPF_SkiaFontMgr::OutputSystemFonts() {} |
| 521 #endif | 521 #endif |
| OLD | NEW |