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