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