Lines Matching refs:pDst
105 fakexa->pDst = pPix; in ephyrPrepareSolid()
134 fbFill(&fakexa->pDst->drawable, fakexa->pGC, x1, y1, x2 - x1, y2 - y1); in ephyrSolid()
160 ephyrPrepareCopy(PixmapPtr pSrc, PixmapPtr pDst, int dx, int dy, int alu, in ephyrPrepareCopy() argument
163 ScreenPtr pScreen = pDst->drawable.pScreen; in ephyrPrepareCopy()
171 ephyrPreparePipelinedAccess(pDst, EXA_PREPARE_DEST); in ephyrPrepareCopy()
175 fakexa->pDst = pDst; in ephyrPrepareCopy()
176 fakexa->pGC = GetScratchGC(pDst->drawable.depth, pScreen); in ephyrPrepareCopy()
182 ValidateGC(&pDst->drawable, fakexa->pGC); in ephyrPrepareCopy()
193 ephyrCopy(PixmapPtr pDst, int srcX, int srcY, int dstX, int dstY, int w, int h) in ephyrCopy() argument
195 ScreenPtr pScreen = pDst->drawable.pScreen; in ephyrCopy()
202 fbCopyArea(&fakexa->pSrc->drawable, &fakexa->pDst->drawable, fakexa->pGC, in ephyrCopy()
210 ephyrDoneCopy(PixmapPtr pDst) in ephyrDoneCopy() argument
212 ScreenPtr pScreen = pDst->drawable.pScreen; in ephyrDoneCopy()
222 ephyrFinishPipelinedAccess(fakexa->pDst, EXA_PREPARE_DEST); in ephyrDoneCopy()
249 PixmapPtr pDst) in ephyrPrepareComposite() argument
251 KdScreenPriv(pDst->drawable.pScreen); in ephyrPrepareComposite()
256 ephyrPreparePipelinedAccess(pDst, EXA_PREPARE_DEST); in ephyrPrepareComposite()
268 fakexa->pDst = pDst; in ephyrPrepareComposite()
279 ephyrComposite(PixmapPtr pDst, int srcX, int srcY, int maskX, int maskY, in ephyrComposite() argument
282 KdScreenPriv(pDst->drawable.pScreen); in ephyrComposite()
293 ephyrDoneComposite(PixmapPtr pDst) in ephyrDoneComposite() argument
295 KdScreenPriv(pDst->drawable.pScreen); in ephyrDoneComposite()
304 ephyrFinishPipelinedAccess(fakexa->pDst, EXA_PREPARE_DEST); in ephyrDoneComposite()
348 ephyrUploadToScreen(PixmapPtr pDst, int x, int y, int w, int h, char *src, in ephyrUploadToScreen() argument
351 KdScreenPriv(pDst->drawable.pScreen); in ephyrUploadToScreen()
358 if (pDst->drawable.bitsPerPixel < 8) in ephyrUploadToScreen()
361 ephyrPreparePipelinedAccess(pDst, EXA_PREPARE_DEST); in ephyrUploadToScreen()
363 cpp = pDst->drawable.bitsPerPixel / 8; in ephyrUploadToScreen()
364 dst_pitch = exaGetPixmapPitch(pDst); in ephyrUploadToScreen()
365 dst = fakexa->exa->memoryBase + exaGetPixmapOffset(pDst); in ephyrUploadToScreen()
374 exaMarkSync(pDst->drawable.pScreen); in ephyrUploadToScreen()
376 ephyrFinishPipelinedAccess(pDst, EXA_PREPARE_DEST); in ephyrUploadToScreen()