Lines Matching defs:pxDst
1566 amd_gx_exa_PrepareCopy(PixmapPtr pxSrc, PixmapPtr pxDst, int dx, int dy,
1569 GeodeRec *pGeode = GEODEPTR_FROM_PIXMAP(pxDst);
1570 int dstPitch = exaGetPixmapPitch(pxDst);
1575 if (pxSrc->drawable.bitsPerPixel != pxDst->drawable.bitsPerPixel)
1601 amd_gx_exa_Copy(PixmapPtr pxDst, int srcX, int srcY, int dstX, int dstY,
1604 GeodeRec *pGeode = GEODEPTR_FROM_PIXMAP(pxDst);
1605 int dstBpp = (pxDst->drawable.bitsPerPixel + 7) / 8;
1606 int dstPitch = exaGetPixmapPitch(pxDst);
1611 exaGetPixmapOffset(pxDst) + (dstPitch * dstY) + (dstBpp * dstX);
1744 PixmapPtr pxDst)
1749 GeodeRec *pGeode = GEODEPTR_FROM_PIXMAP(pxDst);
1779 amd_gx_exa_Composite(PixmapPtr pxDst, int srcX, int srcY, int maskX,
1786 GeodeRec *pGeode = GEODEPTR_FROM_PIXMAP(pxDst);
1806 dstBpp = (pxDst->drawable.bitsPerPixel + 7) / 8;
1807 dstPitch = exaGetPixmapPitch(pxDst);
1808 dstOffset = exaGetPixmapOffset(pxDst) + dstPitch * dstY + dstBpp * dstX;