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/cpdf_pagerendercache.h" |
8 | 8 |
9 #include "core/fpdfapi/fpdf_page/pageint.h" | 9 #include "core/fpdfapi/fpdf_page/pageint.h" |
10 #include "core/include/fpdfapi/cpdf_document.h" | 10 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" |
| 11 #include "core/fpdfapi/fpdf_render/include/cpdf_rendercontext.h" |
| 12 #include "core/fpdfapi/fpdf_render/render_int.h" |
11 #include "core/include/fpdfapi/fpdf_pageobj.h" | 13 #include "core/include/fpdfapi/fpdf_pageobj.h" |
12 #include "core/include/fpdfapi/fpdf_render.h" | |
13 #include "core/include/fxge/fx_ge.h" | 14 #include "core/include/fxge/fx_ge.h" |
14 | 15 |
15 struct CACHEINFO { | 16 struct CACHEINFO { |
16 FX_DWORD time; | 17 FX_DWORD time; |
17 CPDF_Stream* pStream; | 18 CPDF_Stream* pStream; |
18 }; | 19 }; |
19 | 20 |
20 extern "C" { | 21 extern "C" { |
21 static int compare(const void* data1, const void* data2) { | 22 static int compare(const void* data1, const void* data2) { |
22 return ((CACHEINFO*)data1)->time - ((CACHEINFO*)data2)->time; | 23 return ((CACHEINFO*)data1)->time - ((CACHEINFO*)data2)->time; |
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
325 m_pCurBitmap = NULL; | 326 m_pCurBitmap = NULL; |
326 return 0; | 327 return 0; |
327 } | 328 } |
328 ContinueGetCachedBitmap(); | 329 ContinueGetCachedBitmap(); |
329 return 0; | 330 return 0; |
330 } | 331 } |
331 void CPDF_ImageCacheEntry::CalcSize() { | 332 void CPDF_ImageCacheEntry::CalcSize() { |
332 m_dwCacheSize = FPDF_ImageCache_EstimateImageSize(m_pCachedBitmap) + | 333 m_dwCacheSize = FPDF_ImageCache_EstimateImageSize(m_pCachedBitmap) + |
333 FPDF_ImageCache_EstimateImageSize(m_pCachedMask); | 334 FPDF_ImageCache_EstimateImageSize(m_pCachedMask); |
334 } | 335 } |
OLD | NEW |