| 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> |
| (...skipping 618 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 629 void TranslateDownSamples(uint8_t* dest_buf, | 629 void TranslateDownSamples(uint8_t* dest_buf, |
| 630 const uint8_t* src_buf, | 630 const uint8_t* src_buf, |
| 631 int pixels, | 631 int pixels, |
| 632 int Bpp) const override; | 632 int Bpp) const override; |
| 633 | 633 |
| 634 const uint8_t* m_RampR; | 634 const uint8_t* m_RampR; |
| 635 const uint8_t* m_RampG; | 635 const uint8_t* m_RampG; |
| 636 const uint8_t* m_RampB; | 636 const uint8_t* m_RampB; |
| 637 }; | 637 }; |
| 638 | 638 |
| 639 struct _CPDF_UniqueKeyGen { | |
| 640 void Generate(int count, ...); | |
| 641 FX_CHAR m_Key[128]; | |
| 642 int m_KeyLen; | |
| 643 }; | |
| 644 | |
| 645 #endif // CORE_FPDFAPI_FPDF_RENDER_RENDER_INT_H_ | 639 #endif // CORE_FPDFAPI_FPDF_RENDER_RENDER_INT_H_ |
| OLD | NEW |