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

Side by Side Diff: core/fpdfapi/fpdf_page/include/cpdf_generalstatedata.h

Issue 2303553002: Make CPDF_GeneralState have a CPDF_GeneralStateData (Closed)
Patch Set: Rebase Created 4 years, 3 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
OLDNEW
1 // Copyright 2016 PDFium Authors. All rights reserved. 1 // Copyright 2016 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 #ifndef CORE_FPDFAPI_FPDF_PAGE_INCLUDE_CPDF_GENERALSTATEDATA_H_ 7 #ifndef CORE_FPDFAPI_FPDF_PAGE_INCLUDE_CPDF_GENERALSTATEDATA_H_
8 #define CORE_FPDFAPI_FPDF_PAGE_INCLUDE_CPDF_GENERALSTATEDATA_H_ 8 #define CORE_FPDFAPI_FPDF_PAGE_INCLUDE_CPDF_GENERALSTATEDATA_H_
9 9
10 #include "core/fxcrt/include/fx_coordinates.h" 10 #include "core/fxcrt/include/fx_coordinates.h"
(...skipping 15 matching lines...) Expand all
26 char m_BlendMode[16]; 26 char m_BlendMode[16];
27 int m_BlendType; 27 int m_BlendType;
28 CPDF_Object* m_pSoftMask; 28 CPDF_Object* m_pSoftMask;
29 FX_FLOAT m_SMaskMatrix[6]; 29 FX_FLOAT m_SMaskMatrix[6];
30 FX_FLOAT m_StrokeAlpha; 30 FX_FLOAT m_StrokeAlpha;
31 FX_FLOAT m_FillAlpha; 31 FX_FLOAT m_FillAlpha;
32 CPDF_Object* m_pTR; 32 CPDF_Object* m_pTR;
33 CPDF_TransferFunc* m_pTransferFunc; 33 CPDF_TransferFunc* m_pTransferFunc;
34 CFX_Matrix m_Matrix; 34 CFX_Matrix m_Matrix;
35 int m_RenderIntent; 35 int m_RenderIntent;
36 FX_BOOL m_StrokeAdjust; 36 bool m_StrokeAdjust;
37 FX_BOOL m_AlphaSource; 37 bool m_AlphaSource;
38 FX_BOOL m_TextKnockout; 38 bool m_TextKnockout;
39 FX_BOOL m_StrokeOP; 39 bool m_StrokeOP;
40 FX_BOOL m_FillOP; 40 bool m_FillOP;
41 int m_OPMode; 41 int m_OPMode;
42 CPDF_Object* m_pBG; 42 CPDF_Object* m_pBG;
43 CPDF_Object* m_pUCR; 43 CPDF_Object* m_pUCR;
44 CPDF_Object* m_pHT; 44 CPDF_Object* m_pHT;
45 FX_FLOAT m_Flatness; 45 FX_FLOAT m_Flatness;
46 FX_FLOAT m_Smoothness; 46 FX_FLOAT m_Smoothness;
47 }; 47 };
48 48
49 #endif // CORE_FPDFAPI_FPDF_PAGE_INCLUDE_CPDF_GENERALSTATEDATA_H_ 49 #endif // CORE_FPDFAPI_FPDF_PAGE_INCLUDE_CPDF_GENERALSTATEDATA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698