Home | History | Annotate | Download | only in ge

Lines Matching defs:src_pitch

359         int src_pitch = pGlyph->GetPitch();

377 FX_LPBYTE src_scan = src_buf + row * src_pitch + (start_col - left) * 3;
690 FX_LPBYTE src_scan = src_buf + row * src_pitch + (start_col - left) * 3;
1321 static void _GammaAdjust(FX_LPBYTE pData, int nWid, int nHei, int src_pitch, FX_LPCBYTE gammaTable)
1323 int count = nHei * src_pitch;
1451 int src_pitch = FXFT_Get_Bitmap_Pitch(FXFT_Get_Glyph_Bitmap(m_Face));
1458 FX_BYTE data = (pSrcBuf[i * src_pitch + n / 8] & (0x80 >> (n % 8))) ? 255 : 0;
1466 int rowbytes = FXSYS_abs(src_pitch) > dest_pitch ? dest_pitch : FXSYS_abs(src_pitch);
1468 FXSYS_memcpy32(pDestBuf + row * dest_pitch, pSrcBuf + row * src_pitch, rowbytes);
1471 _ContrastAdjust(pSrcBuf, pDestBuf, bmwidth, bmheight, src_pitch, dest_pitch);
1496 int src_pitch = FXFT_Get_Bitmap_Pitch(FXFT_Get_Glyph_Bitmap(face));
1502 FX_LPCBYTE src_scan = src_buf + row * src_pitch;