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

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

Issue 1088733002: Kill CFX_Object. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Rebase. Created 5 years, 8 months 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/dib/fx_dib_convert.cpp ('k') | core/src/fxge/ge/text_int.h » ('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 "../../../include/fxge/fx_ge.h"
8 #include "../../../include/fxcodec/fx_codec.h" 8 #include "../../../include/fxcodec/fx_codec.h"
9 #include "text_int.h" 9 #include "text_int.h"
10 struct PSGlyph { 10 struct PSGlyph {
11 CFX_Font* m_pFont; 11 CFX_Font* m_pFont;
12 FX_DWORD m_GlyphIndex; 12 FX_DWORD m_GlyphIndex;
13 FX_BOOL m_bGlyphAdjust; 13 FX_BOOL m_bGlyphAdjust;
14 FX_FLOAT m_AdjustMatrix[4]; 14 FX_FLOAT m_AdjustMatrix[4];
15 }; 15 };
16 class CPSFont : public CFX_Object 16 class CPSFont
17 { 17 {
18 public: 18 public:
19 PSGlyph m_Glyphs[256]; 19 PSGlyph m_Glyphs[256];
20 int m_nGlyphs; 20 int m_nGlyphs;
21 }; 21 };
22 CFX_PSRenderer::CFX_PSRenderer() 22 CFX_PSRenderer::CFX_PSRenderer()
23 { 23 {
24 m_pOutput = NULL; 24 m_pOutput = NULL;
25 m_bColorSet = m_bGraphStateSet = FALSE; 25 m_bColorSet = m_bGraphStateSet = FALSE;
26 m_bInited = FALSE; 26 m_bInited = FALSE;
(...skipping 621 matching lines...) Expand 10 before | Expand all | Expand 10 after
648 FX_LPBYTE dest_buf; 648 FX_LPBYTE dest_buf;
649 FX_DWORD dest_size; 649 FX_DWORD dest_size;
650 CCodec_ModuleMgr* pEncoders = CFX_GEModule::Get()->GetCodecModule(); 650 CCodec_ModuleMgr* pEncoders = CFX_GEModule::Get()->GetCodecModule();
651 if (pEncoders && pEncoders->GetBasicModule()->A85Encode(data, len, dest_buf, dest_size)) { 651 if (pEncoders && pEncoders->GetBasicModule()->A85Encode(data, len, dest_buf, dest_size)) {
652 m_pOutput->OutputPS((FX_LPCSTR)dest_buf, dest_size); 652 m_pOutput->OutputPS((FX_LPCSTR)dest_buf, dest_size);
653 FX_Free(dest_buf); 653 FX_Free(dest_buf);
654 } else { 654 } else {
655 m_pOutput->OutputPS((FX_LPCSTR)data, len); 655 m_pOutput->OutputPS((FX_LPCSTR)data, len);
656 } 656 }
657 } 657 }
OLDNEW
« no previous file with comments | « core/src/fxge/dib/fx_dib_convert.cpp ('k') | core/src/fxge/ge/text_int.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698