Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Side by Side Diff: core/src/fxge/ge/fx_ge_ps.cpp

Issue 1427633010: Fix relative includes within core/ (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: rebase Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « core/src/fxge/ge/fx_ge_path.cpp ('k') | core/src/fxge/ge/fx_ge_text.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "../../../include/fxge/fx_ge.h" 7 #include "core/include/fxge/fx_ge.h"
8 #include "../../../include/fxcodec/fx_codec.h" 8 #include "core/include/fxcodec/fx_codec.h"
9 #include "text_int.h" 9 #include "text_int.h"
10
10 struct PSGlyph { 11 struct PSGlyph {
11 CFX_Font* m_pFont; 12 CFX_Font* m_pFont;
12 FX_DWORD m_GlyphIndex; 13 FX_DWORD m_GlyphIndex;
13 FX_BOOL m_bGlyphAdjust; 14 FX_BOOL m_bGlyphAdjust;
14 FX_FLOAT m_AdjustMatrix[4]; 15 FX_FLOAT m_AdjustMatrix[4];
15 }; 16 };
16 class CPSFont { 17 class CPSFont {
17 public: 18 public:
18 PSGlyph m_Glyphs[256]; 19 PSGlyph m_Glyphs[256];
19 int m_nGlyphs; 20 int m_nGlyphs;
(...skipping 687 matching lines...) Expand 10 before | Expand all | Expand 10 after
707 FX_DWORD dest_size; 708 FX_DWORD dest_size;
708 CCodec_ModuleMgr* pEncoders = CFX_GEModule::Get()->GetCodecModule(); 709 CCodec_ModuleMgr* pEncoders = CFX_GEModule::Get()->GetCodecModule();
709 if (pEncoders && 710 if (pEncoders &&
710 pEncoders->GetBasicModule()->A85Encode(data, len, dest_buf, dest_size)) { 711 pEncoders->GetBasicModule()->A85Encode(data, len, dest_buf, dest_size)) {
711 m_pOutput->OutputPS((const FX_CHAR*)dest_buf, dest_size); 712 m_pOutput->OutputPS((const FX_CHAR*)dest_buf, dest_size);
712 FX_Free(dest_buf); 713 FX_Free(dest_buf);
713 } else { 714 } else {
714 m_pOutput->OutputPS((const FX_CHAR*)data, len); 715 m_pOutput->OutputPS((const FX_CHAR*)data, len);
715 } 716 }
716 } 717 }
OLDNEW
« no previous file with comments | « core/src/fxge/ge/fx_ge_path.cpp ('k') | core/src/fxge/ge/fx_ge_text.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698