Searched refs:pStretched (Results 1 - 3 of 3) sorted by relevance

/external/pdfium/core/src/fxge/win32/
H A Dfx_win32_device.cpp1025 CFX_DIBitmap* pStretched = pSource->StretchTo(dest_width, dest_height, render_flags, &bitmap_clip); local
1026 if (pStretched == NULL) {
1029 FX_RECT src_rect(0, 0, pStretched->GetWidth(), pStretched->GetHeight());
1030 FX_BOOL ret = SetDIBits(pStretched, color, &src_rect, pClipRect->left, pClipRect->top, FXDIB_BLEND_NORMAL, alpha_flag, pIccTransform);
1031 delete pStretched;
1052 CFX_DIBitmap* pStretched = pSource->StretchTo(dest_width, dest_height, flags, &clip_rect); local
1053 if (pStretched == NULL) {
1059 !background.CompositeMask(0, 0, clip_width, clip_height, pStretched, color, 0, 0, FXDIB_BLEND_NORMAL, NULL, FALSE, alpha_flag, pIccTransform)) {
1060 delete pStretched;
[all...]
H A Dfx_win32_gdipext.cpp300 CFX_DIBitmap* pStretched = FX_NEW CFX_DIBitmap; local
301 if (!pStretched) {
304 if (!pStretched->Create(result_width, result_height, FXDIB_8bppRgb)) {
305 delete pStretched;
308 LPBYTE dest_buf = pStretched->GetBuffer();
341 return pStretched;
379 CFX_DIBitmap* pStretched = NULL; local
381 pStretched = _StretchMonoToGray(dest_width, dest_height, pBitmap, &image_clip);
383 pStretched = pBitmap->StretchTo(dest_width, dest_height, FALSE, &image_clip);
387 (image_clip.Width() + 3) / 4 * 4, PixelFormat8bppIndexed, pStretched
[all...]
/external/pdfium/core/src/fpdfapi/fpdf_render/
H A Dfpdf_render_image.cpp790 CFX_DIBitmap* pStretched = m_pDIBSource->StretchTo(dest_width, dest_height, m_Flags, &dest_clip); local
791 if (pStretched) {
792 m_pRenderStatus->CompositeDIBitmap(pStretched, dest_rect.left, dest_rect.top, m_FillArgb,
794 delete pStretched;
795 pStretched = NULL;

Completed in 632 milliseconds