Searched refs:pGlyph (Results 1 – 3 of 3) sorted by relevance
/external/pdfium/core/fxge/ |
D | fx_ge_text.cpp | 52 const CFX_GlyphBitmap* pGlyph = glyph.m_pGlyph; in FXGE_GetGlyphsBBox() local 53 if (!pGlyph) in FXGE_GetGlyphsBBox() 57 char_left += pGlyph->m_Left; in FXGE_GetGlyphsBBox() 61 FX_SAFE_INT32 char_width = pGlyph->m_pBitmap->GetWidth(); in FXGE_GetGlyphsBBox() 73 char_top -= pGlyph->m_Top; in FXGE_GetGlyphsBBox() 77 FX_SAFE_INT32 char_height = pGlyph->m_pBitmap->GetHeight(); in FXGE_GetGlyphsBBox()
|
D | cfx_renderdevice.cpp | 203 const RetainPtr<CFX_DIBitmap>& pGlyph, in DrawNormalTextHelper() argument 217 uint8_t* src_buf = pGlyph->GetBuffer(); in DrawNormalTextHelper() 218 int src_pitch = pGlyph->GetPitch(); in DrawNormalTextHelper() 1000 RetainPtr<CFX_DIBitmap> pGlyph = glyph.m_pGlyph->m_pBitmap; in DrawNormalText() local 1004 pGlyph->GetWidth(), pGlyph->GetHeight(), pGlyph, 0, 0); in DrawNormalText() 1049 RetainPtr<CFX_DIBitmap> pGlyph = glyph.m_pGlyph->m_pBitmap; in DrawNormalText() local 1050 int ncols = pGlyph->GetWidth(); in DrawNormalText() 1051 int nrows = pGlyph->GetHeight(); in DrawNormalText() 1054 nrows, pGlyph, fill_color, 0, 0, in DrawNormalText() 1075 DrawNormalTextHelper(bitmap, pGlyph, nrows, left.ValueOrDie(), in DrawNormalText()
|
/external/pdfium/core/fpdfapi/render/ |
D | cpdf_type3cache.cpp | 169 auto pGlyph = pdfium::MakeUnique<CFX_GlyphBitmap>(); in RenderGlyph() local 170 pGlyph->m_Left = left; in RenderGlyph() 171 pGlyph->m_Top = -top; in RenderGlyph() 172 pGlyph->m_pBitmap->TakeOver(std::move(pResBitmap)); in RenderGlyph() 173 return pGlyph; in RenderGlyph()
|