diff options
Diffstat (limited to 'core/fpdfapi/render/render_int.h')
-rw-r--r-- | core/fpdfapi/render/render_int.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/core/fpdfapi/render/render_int.h b/core/fpdfapi/render/render_int.h index 35b8cc529e..9336e068d4 100644 --- a/core/fpdfapi/render/render_int.h +++ b/core/fpdfapi/render/render_int.h @@ -141,11 +141,12 @@ class CPDF_ImageCacheEntry { CPDF_Document* m_pDocument; CPDF_Stream* m_pStream; - CFX_DIBSource* m_pCachedBitmap; - CFX_DIBSource* m_pCachedMask; + std::unique_ptr<CFX_DIBSource> m_pCachedBitmap; + std::unique_ptr<CFX_DIBSource> m_pCachedMask; uint32_t m_dwCacheSize; void CalcSize(); }; + typedef struct { FX_FLOAT m_DecodeMin; FX_FLOAT m_DecodeStep; |