Home
last modified time | relevance | path

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

/external/pdfium/core/fpdfapi/render/
Dcpdf_type3cache.cpp112 std::unique_ptr<CFX_GlyphBitmap> pNewBitmap = in LoadGlyph() local
114 CFX_GlyphBitmap* pGlyphBitmap = pNewBitmap.get(); in LoadGlyph()
115 pSizeCache->SetBitmap(charcode, std::move(pNewBitmap)); in LoadGlyph()
/external/pdfium/core/fxge/dib/
Dcfx_dibbase.cpp737 auto pNewBitmap = pdfium::MakeRetain<CFX_DIBitmap>(); in Clone() local
738 if (!pNewBitmap->Create(rect.Width(), rect.Height(), GetFormat())) in Clone()
741 pNewBitmap->SetPalette(m_pPalette.get()); in Clone()
742 pNewBitmap->SetAlphaMask(m_pAlphaMask, pClip); in Clone()
746 int dword_count = pNewBitmap->m_Pitch / 4; in Clone()
751 pNewBitmap->GetWritableScanline(row - rect.top)); in Clone()
758 int copy_len = (pNewBitmap->GetWidth() * pNewBitmap->GetBPP() + 7) / 8; in Clone()
764 uint8_t* dest_scan = pNewBitmap->GetWritableScanline(row - rect.top); in Clone()
768 return pNewBitmap; in Clone()