Home
last modified time | relevance | path

Searched refs:m_pDataCache (Results 1 – 2 of 2) sorted by relevance

/external/pdfium/core/src/fxcodec/codec/
Dfx_codec.cpp82 if (m_pDataCache && line < m_pDataCache->NumLines()) in GetScanline()
83 return m_pDataCache->GetLine(line); in GetScanline()
103 if (m_pDataCache && line < m_pDataCache->NumLines()) in SkipToScanline()
129 if (m_pDataCache && m_NextLine == m_pDataCache->NumLines()) in ReadNextLine()
130 m_pDataCache->AppendLine(pLine); in ReadNextLine()
139 if (m_pDataCache && in DownScale()
140 m_pDataCache->IsSameDimensions(m_OutputWidth, m_OutputHeight)) { in DownScale()
149 m_pDataCache = std::move(cache); in DownScale()
Dcodec_int.h58 void ClearImageData() override { m_pDataCache.reset(); } in ClearImageData()
102 std::unique_ptr<ImageDataCache> m_pDataCache; variable