Lines Matching defs:pxDst
335 lx_prepare_copy(PixmapPtr pxSrc, PixmapPtr pxDst, int dx, int dy,
338 int dpitch = exaGetPixmapPitch(pxDst);
342 gp_set_bpp(pxDst->drawable.bitsPerPixel);
361 lx_do_copy(PixmapPtr pxDst, int srcX, int srcY,
364 int dstBpp = (pxDst->drawable.bitsPerPixel + 7) / 8;
365 int dstPitch = exaGetPixmapPitch(pxDst);
374 dstOffset = exaGetPixmapOffset(pxDst) + (dstPitch * dstY) + (dstBpp * dstX);
682 PixmapPtr pxDst)
684 GeodeRec *pGeode = GEODEPTR_FROM_PIXMAP(pxDst);
824 lx_composite_onepass_add_a8(PixmapPtr pxDst, unsigned long dstOffset,
834 pixmapOffset = exaGetPixmapOffset(pxDst);
835 pixmapPitch = exaGetPixmapPitch(pxDst);
836 calBitsPixel = (pxDst->drawable.bitsPerPixel + 7) / 8;
848 gp_set_strides(exaGetPixmapPitch(pxDst), exaScratch.srcPitch);
885 lx_composite_onepass(PixmapPtr pxDst, unsigned long dstOffset,
899 gp_set_strides(exaGetPixmapPitch(pxDst), exaScratch.srcPitch);
930 lx_composite_onepass_special(PixmapPtr pxDst, int width, int height, int opX,
960 dstOffset = GetPixmapOffset(pxDst, optempX, optempY);
967 gp_set_strides(exaGetPixmapPitch(pxDst), exaScratch.srcPitch);
1012 lx_composite_multipass(PixmapPtr pxDst, unsigned long dstOffset,
1032 gp_set_strides(exaScratch.srcPitch, exaGetPixmapPitch(pxDst));
1076 lx_composite_rotate(PixmapPtr pxDst, unsigned long dstOffset,
1083 gp_set_strides(exaGetPixmapPitch(pxDst), exaScratch.srcPitch);
1108 lx_do_composite_mask(PixmapPtr pxDst, unsigned long dstOffset,
1116 gp_set_strides(exaGetPixmapPitch(pxDst), exaScratch.srcPitch);
1126 lx_do_composite_mask_two_pass(PixmapPtr pxDst, unsigned long dstOffset,
1180 gp_set_strides(exaGetPixmapPitch(pxDst), opWidth * 4);
1197 dstOffset = GetPixmapOffset(pxDst, opoverX, opoverY);
1222 lx_do_composite(PixmapPtr pxDst, int srcX, int srcY, int maskX,
1402 dstOffset = GetPixmapOffset(pxDst, opX, opY);
1411 lx_do_composite_mask_two_pass(pxDst, dstOffset,
1415 lx_do_composite_mask(pxDst, dstOffset, srcOffset,
1423 lx_composite_onepass_special(pxDst, opWidth, opHeight, opX, opY,
1430 lx_composite_onepass_add_a8(pxDst, dstOffset, srcOffset,
1434 lx_composite_onepass(pxDst, dstOffset, srcOffset, opWidth,
1439 lx_composite_multipass(pxDst, dstOffset, srcOffset, opWidth,
1443 lx_composite_rotate(pxDst, dstOffset, srcOffset, opWidth, opHeight);
1535 lx_upload_to_screen(PixmapPtr pxDst, int x, int y, int w, int h,
1538 GeodeRec *pGeode = GEODEPTR_FROM_PIXMAP(pxDst);
1539 int dst_pitch = exaGetPixmapPitch(pxDst);
1540 int cpp = (pxDst->drawable.bitsPerPixel + 7) / 8;
1543 int offset = exaGetPixmapOffset(pxDst);