| 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_RENDER_RENDER_INT_H_ |
| 8 #define CORE_FPDFAPI_FPDF_RENDER_RENDER_INT_H_ | 8 #define CORE_FPDFAPI_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_render/cpdf_renderoptions.h" | |
| 15 #include "core/fpdfapi/page/cpdf_clippath.h" | 14 #include "core/fpdfapi/page/cpdf_clippath.h" |
| 16 #include "core/fpdfapi/page/cpdf_countedobject.h" | 15 #include "core/fpdfapi/page/cpdf_countedobject.h" |
| 17 #include "core/fpdfapi/page/cpdf_graphicstates.h" | 16 #include "core/fpdfapi/page/cpdf_graphicstates.h" |
| 18 #include "core/fpdfapi/parser/cpdf_stream_acc.h" | 17 #include "core/fpdfapi/parser/cpdf_stream_acc.h" |
| 18 #include "core/fpdfapi/render/cpdf_renderoptions.h" |
| 19 #include "core/fxge/cfx_fxgedevice.h" | 19 #include "core/fxge/cfx_fxgedevice.h" |
| 20 #include "core/fxge/cfx_renderdevice.h" | 20 #include "core/fxge/cfx_renderdevice.h" |
| 21 | 21 |
| 22 class CCodec_Jbig2Context; | 22 class CCodec_Jbig2Context; |
| 23 class CCodec_ScanlineDecoder; | 23 class CCodec_ScanlineDecoder; |
| 24 class CFX_GlyphBitmap; | 24 class CFX_GlyphBitmap; |
| 25 class CFX_ImageTransformer; | 25 class CFX_ImageTransformer; |
| 26 class CFX_PathData; | 26 class CFX_PathData; |
| 27 class CPDF_Color; | 27 class CPDF_Color; |
| 28 class CPDF_Dictionary; | 28 class CPDF_Dictionary; |
| (...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 586 void TranslateDownSamples(uint8_t* dest_buf, | 586 void TranslateDownSamples(uint8_t* dest_buf, |
| 587 const uint8_t* src_buf, | 587 const uint8_t* src_buf, |
| 588 int pixels, | 588 int pixels, |
| 589 int Bpp) const override; | 589 int Bpp) const override; |
| 590 | 590 |
| 591 const uint8_t* m_RampR; | 591 const uint8_t* m_RampR; |
| 592 const uint8_t* m_RampG; | 592 const uint8_t* m_RampG; |
| 593 const uint8_t* m_RampB; | 593 const uint8_t* m_RampB; |
| 594 }; | 594 }; |
| 595 | 595 |
| 596 #endif // CORE_FPDFAPI_FPDF_RENDER_RENDER_INT_H_ | 596 #endif // CORE_FPDFAPI_RENDER_RENDER_INT_H_ |
| OLD | NEW |