| 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/include/cpdf_page.h" |
| 11 #include "core/fpdfapi/fpdf_page/pageint.h" | 10 #include "core/fpdfapi/fpdf_page/pageint.h" |
| 12 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" | 11 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" |
| 13 #include "core/fpdfapi/fpdf_render/include/cpdf_rendercontext.h" | 12 #include "core/fpdfapi/fpdf_render/include/cpdf_rendercontext.h" |
| 14 #include "core/fpdfapi/fpdf_render/render_int.h" | 13 #include "core/fpdfapi/fpdf_render/render_int.h" |
| 15 #include "core/fxge/include/fx_ge.h" | 14 #include "core/fxge/include/fx_ge.h" |
| 16 | 15 |
| 17 struct CACHEINFO { | 16 struct CACHEINFO { |
| 18 uint32_t time; | 17 uint32_t time; |
| 19 CPDF_Stream* pStream; | 18 CPDF_Stream* pStream; |
| (...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 319 m_pCurBitmap = NULL; | 318 m_pCurBitmap = NULL; |
| 320 return 0; | 319 return 0; |
| 321 } | 320 } |
| 322 ContinueGetCachedBitmap(); | 321 ContinueGetCachedBitmap(); |
| 323 return 0; | 322 return 0; |
| 324 } | 323 } |
| 325 void CPDF_ImageCacheEntry::CalcSize() { | 324 void CPDF_ImageCacheEntry::CalcSize() { |
| 326 m_dwCacheSize = FPDF_ImageCache_EstimateImageSize(m_pCachedBitmap) + | 325 m_dwCacheSize = FPDF_ImageCache_EstimateImageSize(m_pCachedBitmap) + |
| 327 FPDF_ImageCache_EstimateImageSize(m_pCachedMask); | 326 FPDF_ImageCache_EstimateImageSize(m_pCachedMask); |
| 328 } | 327 } |
| OLD | NEW |