HomeSort by relevance Sort by last modified time
    Searched refs:m_InterPitch (Results 1 - 2 of 2) sorted by null

  /external/pdfium/core/src/fxge/dib/
dib_int.h 76 int m_SrcPitch, m_InterPitch;
fx_dib_engine.cpp 214 m_InterPitch = (m_DestClip.Width() * m_DestBpp + 31) / 32 * 4;
313 if (m_DestWidth == 0 || m_pDestScanline == NULL || m_SrcClip.Height() > (int)((1U << 29) / m_InterPitch) || m_SrcClip.Height() == 0) {
317 m_pInterBuf = FX_AllocNL(unsigned char, m_SrcClip.Height() * m_InterPitch);
319 m_pInterBuf = FX_Alloc(unsigned char, m_SrcClip.Height() * m_InterPitch);
363 FX_LPBYTE dest_scan = m_pInterBuf + (m_CurRow - m_SrcClip.top) * m_InterPitch;
572 dest_a += pixel_weight * src_scan[(j - m_SrcClip.top) * m_InterPitch];
589 dest_k += pixel_weight * src_scan[(j - m_SrcClip.top) * m_InterPitch];
609 FX_LPCBYTE src_pixel = src_scan + (j - m_SrcClip.top) * m_InterPitch;
637 FX_LPCBYTE src_pixel = src_scan + (j - m_SrcClip.top) * m_InterPitch;
    [all...]

Completed in 99 milliseconds