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 #include "core/fpdfapi/fpdf_render/render_int.h" | 7 #include "core/fpdfapi/fpdf_render/render_int.h" |
8 | 8 |
9 #include <algorithm> | 9 #include <algorithm> |
10 #include <memory> | 10 #include <memory> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "core/fpdfapi/fpdf_page/pageint.h" | 13 #include "core/fpdfapi/fpdf_page/pageint.h" |
14 #include "core/include/fpdfapi/cpdf_array.h" | 14 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h" |
15 #include "core/include/fpdfapi/cpdf_dictionary.h" | 15 #include "core/fpdfapi/fpdf_parser/include/cpdf_dictionary.h" |
16 #include "core/include/fpdfapi/cpdf_document.h" | 16 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" |
17 #include "core/include/fpdfapi/fpdf_module.h" | 17 #include "core/fpdfapi/fpdf_render/cpdf_pagerendercache.h" |
| 18 #include "core/fpdfapi/include/cpdf_modulemgr.h" |
18 #include "core/include/fpdfapi/fpdf_pageobj.h" | 19 #include "core/include/fpdfapi/fpdf_pageobj.h" |
19 #include "core/include/fpdfapi/fpdf_render.h" | |
20 #include "core/include/fxcodec/fx_codec.h" | 20 #include "core/include/fxcodec/fx_codec.h" |
21 #include "core/include/fxcrt/fx_safe_types.h" | 21 #include "core/include/fxcrt/fx_safe_types.h" |
22 #include "core/include/fxge/fx_ge.h" | 22 #include "core/include/fxge/fx_ge.h" |
23 | 23 |
24 namespace { | 24 namespace { |
25 | 25 |
26 unsigned int GetBits8(const uint8_t* pData, uint64_t bitpos, size_t nbits) { | 26 unsigned int GetBits8(const uint8_t* pData, uint64_t bitpos, size_t nbits) { |
27 ASSERT(nbits == 1 || nbits == 2 || nbits == 4 || nbits == 8 || nbits == 16); | 27 ASSERT(nbits == 1 || nbits == 2 || nbits == 4 || nbits == 8 || nbits == 16); |
28 ASSERT((bitpos & (nbits - 1)) == 0); | 28 ASSERT((bitpos & (nbits - 1)) == 0); |
29 unsigned int byte = pData[bitpos / 8]; | 29 unsigned int byte = pData[bitpos / 8]; |
(...skipping 1615 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1645 IFX_Pause* pPause) { | 1645 IFX_Pause* pPause) { |
1646 return LoadHandle->Continue(pPause); | 1646 return LoadHandle->Continue(pPause); |
1647 } | 1647 } |
1648 | 1648 |
1649 CPDF_ImageLoader::~CPDF_ImageLoader() { | 1649 CPDF_ImageLoader::~CPDF_ImageLoader() { |
1650 if (!m_bCached) { | 1650 if (!m_bCached) { |
1651 delete m_pBitmap; | 1651 delete m_pBitmap; |
1652 delete m_pMask; | 1652 delete m_pMask; |
1653 } | 1653 } |
1654 } | 1654 } |
OLD | NEW |