Home | History | Annotate | Download | only in dib

Lines Matching refs:Bpp

400             int Bpp = GetBPP() / 8;
402 FX_LPBYTE dest_scan = m_pBuffer + (dest_top + row) * m_Pitch + dest_left * Bpp;
403 FX_LPCBYTE src_scan = pSrcBitmap->GetScanline(src_top + row) + src_left * Bpp;
404 FXSYS_memcpy32(dest_scan, src_scan, width * Bpp);
784 int Bpp = GetBPP() / 8;
785 if (Bpp == 1) {
797 scan_line += Bpp;
1394 int Bpp = m_bpp / 8;
1410 dest_scan += (m_Width - 1) * Bpp;
1411 if (Bpp == 1) {
1417 } else if (Bpp == 3) {
1426 ASSERT(Bpp == 4);