OLD | NEW |
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 #ifndef CORE_FPDFAPI_FPDF_RENDER_RENDER_INT_H_ | 7 #ifndef CORE_FPDFAPI_FPDF_RENDER_RENDER_INT_H_ |
8 #define CORE_FPDFAPI_FPDF_RENDER_RENDER_INT_H_ | 8 #define CORE_FPDFAPI_FPDF_RENDER_RENDER_INT_H_ |
9 | 9 |
10 #include <map> | 10 #include <map> |
11 #include <memory> | 11 #include <memory> |
12 #include <vector> | 12 #include <vector> |
13 | 13 |
14 #include "core/fpdfapi/fpdf_page/cpdf_countedobject.h" | 14 #include "core/fpdfapi/fpdf_page/cpdf_countedobject.h" |
15 #include "core/fpdfapi/fpdf_page/cpdf_graphicstates.h" | 15 #include "core/fpdfapi/fpdf_page/cpdf_graphicstates.h" |
16 #include "core/fpdfapi/fpdf_page/include/cpdf_clippath.h" | 16 #include "core/fpdfapi/fpdf_page/include/cpdf_clippath.h" |
17 #include "core/fpdfapi/fpdf_parser/include/cpdf_stream_acc.h" | 17 #include "core/fpdfapi/fpdf_parser/include/cpdf_stream_acc.h" |
18 #include "core/fpdfapi/fpdf_render/include/cpdf_renderoptions.h" | 18 #include "core/fpdfapi/fpdf_render/include/cpdf_renderoptions.h" |
| 19 #include "core/fxge/include/cfx_fxgedevice.h" |
| 20 #include "core/fxge/include/cfx_renderdevice.h" |
19 | 21 |
20 class CCodec_Jbig2Context; | 22 class CCodec_Jbig2Context; |
21 class CCodec_ScanlineDecoder; | 23 class CCodec_ScanlineDecoder; |
22 class CFX_FontCache; | 24 class CFX_FontCache; |
23 class CFX_GlyphBitmap; | 25 class CFX_GlyphBitmap; |
24 class CFX_ImageTransformer; | 26 class CFX_ImageTransformer; |
25 class CFX_PathData; | 27 class CFX_PathData; |
26 class CPDF_Color; | 28 class CPDF_Color; |
27 class CPDF_Dictionary; | 29 class CPDF_Dictionary; |
28 class CPDF_Document; | 30 class CPDF_Document; |
(...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
629 const uint8_t* src_buf, | 631 const uint8_t* src_buf, |
630 int pixels, | 632 int pixels, |
631 int Bpp) const override; | 633 int Bpp) const override; |
632 | 634 |
633 const uint8_t* m_RampR; | 635 const uint8_t* m_RampR; |
634 const uint8_t* m_RampG; | 636 const uint8_t* m_RampG; |
635 const uint8_t* m_RampB; | 637 const uint8_t* m_RampB; |
636 }; | 638 }; |
637 | 639 |
638 #endif // CORE_FPDFAPI_FPDF_RENDER_RENDER_INT_H_ | 640 #endif // CORE_FPDFAPI_FPDF_RENDER_RENDER_INT_H_ |
OLD | NEW |