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 | 19 |
20 class CCodec_Jbig2Context; | 20 class CCodec_Jbig2Context; |
21 class CCodec_ScanlineDecoder; | 21 class CCodec_ScanlineDecoder; |
22 class CFX_FontCache; | 22 class CFX_FontCache; |
23 class CFX_GlyphBitmap; | 23 class CFX_GlyphBitmap; |
24 class CFX_ImageTransformer; | 24 class CFX_ImageTransformer; |
| 25 class CFX_PathData; |
25 class CPDF_Color; | 26 class CPDF_Color; |
26 class CPDF_Dictionary; | 27 class CPDF_Dictionary; |
27 class CPDF_Document; | 28 class CPDF_Document; |
28 class CPDF_Font; | 29 class CPDF_Font; |
29 class CPDF_FormObject; | 30 class CPDF_FormObject; |
30 class CPDF_ImageCacheEntry; | 31 class CPDF_ImageCacheEntry; |
31 class CPDF_ImageLoaderHandle; | 32 class CPDF_ImageLoaderHandle; |
32 class CPDF_ImageObject; | 33 class CPDF_ImageObject; |
33 class CPDF_ImageRenderer; | 34 class CPDF_ImageRenderer; |
34 class CPDF_Object; | 35 class CPDF_Object; |
(...skipping 590 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
625 const uint8_t* src_buf, | 626 const uint8_t* src_buf, |
626 int pixels, | 627 int pixels, |
627 int Bpp) const override; | 628 int Bpp) const override; |
628 | 629 |
629 const uint8_t* m_RampR; | 630 const uint8_t* m_RampR; |
630 const uint8_t* m_RampG; | 631 const uint8_t* m_RampG; |
631 const uint8_t* m_RampB; | 632 const uint8_t* m_RampB; |
632 }; | 633 }; |
633 | 634 |
634 #endif // CORE_FPDFAPI_FPDF_RENDER_RENDER_INT_H_ | 635 #endif // CORE_FPDFAPI_FPDF_RENDER_RENDER_INT_H_ |
OLD | NEW |