| OLD | NEW |
| 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_PAGE_CPDF_GENERALSTATE_H_ | 7 #ifndef CORE_FPDFAPI_PAGE_CPDF_GENERALSTATE_H_ |
| 8 #define CORE_FPDFAPI_PAGE_CPDF_GENERALSTATE_H_ | 8 #define CORE_FPDFAPI_PAGE_CPDF_GENERALSTATE_H_ |
| 9 | 9 |
| 10 #include "core/fxcrt/fx_basic.h" | 10 #include "core/fxcrt/fx_basic.h" |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 bool m_StrokeOP; | 96 bool m_StrokeOP; |
| 97 bool m_FillOP; | 97 bool m_FillOP; |
| 98 int m_OPMode; | 98 int m_OPMode; |
| 99 CPDF_Object* m_pBG; | 99 CPDF_Object* m_pBG; |
| 100 CPDF_Object* m_pUCR; | 100 CPDF_Object* m_pUCR; |
| 101 CPDF_Object* m_pHT; | 101 CPDF_Object* m_pHT; |
| 102 FX_FLOAT m_Flatness; | 102 FX_FLOAT m_Flatness; |
| 103 FX_FLOAT m_Smoothness; | 103 FX_FLOAT m_Smoothness; |
| 104 }; | 104 }; |
| 105 | 105 |
| 106 CFX_CountRef<StateData> m_Ref; | 106 CFX_SharedCopyOnWrite<StateData> m_Ref; |
| 107 }; | 107 }; |
| 108 | 108 |
| 109 #endif // CORE_FPDFAPI_PAGE_CPDF_GENERALSTATE_H_ | 109 #endif // CORE_FPDFAPI_PAGE_CPDF_GENERALSTATE_H_ |
| OLD | NEW |