| 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_FXGE_INCLUDE_IFX_RENDERDEVICEDRIVER_H_ | 7 #ifndef CORE_FXGE_INCLUDE_IFX_RENDERDEVICEDRIVER_H_ |
| 8 #define CORE_FXGE_INCLUDE_IFX_RENDERDEVICEDRIVER_H_ | 8 #define CORE_FXGE_INCLUDE_IFX_RENDERDEVICEDRIVER_H_ |
| 9 | 9 |
| 10 #include "core/fxcrt/include/fx_system.h" | 10 #include "core/fxcrt/fx_system.h" |
| 11 | 11 |
| 12 class CFX_DIBitmap; | 12 class CFX_DIBitmap; |
| 13 class CFX_DIBSource; | 13 class CFX_DIBSource; |
| 14 class CFX_Font; | 14 class CFX_Font; |
| 15 class CFX_GraphStateData; | 15 class CFX_GraphStateData; |
| 16 class CFX_Matrix; | 16 class CFX_Matrix; |
| 17 class CFX_PathData; | 17 class CFX_PathData; |
| 18 class CPDF_ShadingPattern; | 18 class CPDF_ShadingPattern; |
| 19 class IFX_Pause; | 19 class IFX_Pause; |
| 20 struct FXTEXT_CHARPOS; | 20 struct FXTEXT_CHARPOS; |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 FX_BOOL bAlphaMode); | 99 FX_BOOL bAlphaMode); |
| 100 virtual bool SetBitsWithMask(const CFX_DIBSource* pBitmap, | 100 virtual bool SetBitsWithMask(const CFX_DIBSource* pBitmap, |
| 101 const CFX_DIBSource* pMask, | 101 const CFX_DIBSource* pMask, |
| 102 int left, | 102 int left, |
| 103 int top, | 103 int top, |
| 104 int bitmap_alpha, | 104 int bitmap_alpha, |
| 105 int blend_type); | 105 int blend_type); |
| 106 }; | 106 }; |
| 107 | 107 |
| 108 #endif // CORE_FXGE_INCLUDE_IFX_RENDERDEVICEDRIVER_H_ | 108 #endif // CORE_FXGE_INCLUDE_IFX_RENDERDEVICEDRIVER_H_ |
| OLD | NEW |