Searched refs:pStretched (Results 1 – 3 of 3) sorted by relevance
/external/pdfium/core/src/fxge/win32/ |
D | fx_win32_device.cpp | 1025 …CFX_DIBitmap* pStretched = pSource->StretchTo(dest_width, dest_height, render_flags, &bitmap_clip); in UseFoxitStretchEngine() local 1026 if (pStretched == NULL) { in UseFoxitStretchEngine() 1029 FX_RECT src_rect(0, 0, pStretched->GetWidth(), pStretched->GetHeight()); in UseFoxitStretchEngine() 1030 …FX_BOOL ret = SetDIBits(pStretched, color, &src_rect, pClipRect->left, pClipRect->top, FXDIB_BLEND… in UseFoxitStretchEngine() 1031 delete pStretched; in UseFoxitStretchEngine() 1052 CFX_DIBitmap* pStretched = pSource->StretchTo(dest_width, dest_height, flags, &clip_rect); in StretchDIBits() local 1053 if (pStretched == NULL) { in StretchDIBits() 1059 …!background.CompositeMask(0, 0, clip_width, clip_height, pStretched, color, 0, 0, FXDIB_BLEND_NORM… in StretchDIBits() 1060 delete pStretched; in StretchDIBits() 1065 delete pStretched; in StretchDIBits()
|
D | fx_win32_gdipext.cpp | 300 CFX_DIBitmap* pStretched = FX_NEW CFX_DIBitmap; in _StretchMonoToGray() local 301 if (!pStretched) { in _StretchMonoToGray() 304 if (!pStretched->Create(result_width, result_height, FXDIB_8bppRgb)) { in _StretchMonoToGray() 305 delete pStretched; in _StretchMonoToGray() 308 LPBYTE dest_buf = pStretched->GetBuffer(); in _StretchMonoToGray() 341 return pStretched; in _StretchMonoToGray() 379 CFX_DIBitmap* pStretched = NULL; in OutputImageMask() local 381 pStretched = _StretchMonoToGray(dest_width, dest_height, pBitmap, &image_clip); in OutputImageMask() 383 pStretched = pBitmap->StretchTo(dest_width, dest_height, FALSE, &image_clip); in OutputImageMask() 387 … (image_clip.Width() + 3) / 4 * 4, PixelFormat8bppIndexed, pStretched->GetBuffer(), &bitmap); in OutputImageMask() [all …]
|
/external/pdfium/core/src/fpdfapi/fpdf_render/ |
D | fpdf_render_image.cpp | 790 … CFX_DIBitmap* pStretched = m_pDIBSource->StretchTo(dest_width, dest_height, m_Flags, &dest_clip); in StartDIBSource() local 791 if (pStretched) { in StartDIBSource() 792 m_pRenderStatus->CompositeDIBitmap(pStretched, dest_rect.left, dest_rect.top, m_FillArgb, in StartDIBSource() 794 delete pStretched; in StartDIBSource() 795 pStretched = NULL; in StartDIBSource()
|