Lines Matching defs:src_pitch
67 SMI_UploadToScreen(PixmapPtr pDst, int x, int y, int w, int h, char *src, int src_pitch);
227 int src_pitch, dst_pitch;
239 src_pitch = exaGetPixmapPitch(pSrcPixmap) / (pSrcPixmap->drawable.bitsPerPixel >> 3);
254 src_pitch *= 3;
264 WRITE_DPR(pSmi, 0x3C, (dst_pitch << 16) | (src_pitch & 0xFFFF));
266 WRITE_DPR(pSmi, 0x10, (dst_pitch << 16) | (src_pitch & 0xFFFF));
488 int src_pitch = exaGetPixmapPitch(pSrc);
496 src += (y * src_pitch) + (x * pSrc->drawable.bitsPerPixel/8);
501 src += src_pitch;
510 char *src, int src_pitch)
518 DEBUG("x=%d y=%d w=%d h=%d src=%d src_pitch=%d\n",
519 x, y, w, h, src, src_pitch);
531 src_pixelpitch = src_pitch / (pDst->drawable.bitsPerPixel >> 3);
577 src += src_pitch;
630 int src_pitch = exaGetPixmapPitch(pSrc) / (pSrc->drawable.bitsPerPixel >> 3);
642 WRITE_DPR(pSmi, 0x3C, (dst_pitch << 16) | (src_pitch & 0xFFFF));
645 WRITE_DPR(pSmi, 0x10, (dst_pitch << 16) | (src_pitch & 0xFFFF));