Lines Matching refs:pDst
465 #define TRIM_PICTURE_BOX(box, pDst) { \ argument
466 BoxPtr extents = &pDst->pCompositeClip->extents;\
480 PicturePtr pDst, in damageComposite() argument
487 ScreenPtr pScreen = pDst->pDrawable->pScreen; in damageComposite()
492 if (checkPictureDamage(pDst)) { in damageComposite()
495 box.x1 = xDst + pDst->pDrawable->x; in damageComposite()
496 box.y1 = yDst + pDst->pDrawable->y; in damageComposite()
499 TRIM_PICTURE_BOX(box, pDst); in damageComposite()
501 damageDamageBox(pDst->pDrawable, &box, pDst->subWindowMode); in damageComposite()
516 pDst, in damageComposite()
518 damageRegionProcessPending(pDst->pDrawable); in damageComposite()
525 PicturePtr pDst, in damageGlyphs() argument
530 ScreenPtr pScreen = pDst->pDrawable->pScreen; in damageGlyphs()
535 if (checkPictureDamage(pDst)) { in damageGlyphs()
549 x = pDst->pDrawable->x; in damageGlyphs()
550 y = pDst->pDrawable->y; in damageGlyphs()
574 TRIM_PICTURE_BOX(box, pDst); in damageGlyphs()
576 damageDamageBox(pDst->pDrawable, &box, pDst->subWindowMode); in damageGlyphs()
579 (*ps->Glyphs) (op, pSrc, pDst, maskFormat, xSrc, ySrc, nlist, list, glyphs); in damageGlyphs()
580 damageRegionProcessPending(pDst->pDrawable); in damageGlyphs()
754 DrawablePtr pDst, in damageCopyArea() argument
760 DAMAGE_GC_OP_PROLOGUE(pGC, pDst); in damageCopyArea()
762 if (checkGCDamage(pDst, pGC)) { in damageCopyArea()
765 box.x1 = dstx + pDst->x; in damageCopyArea()
767 box.y1 = dsty + pDst->y; in damageCopyArea()
772 damageDamageBox(pDst, &box, pGC->subWindowMode); in damageCopyArea()
775 ret = (*pGC->ops->CopyArea) (pSrc, pDst, in damageCopyArea()
777 damageRegionProcessPending(pDst); in damageCopyArea()
778 DAMAGE_GC_OP_EPILOGUE(pGC, pDst); in damageCopyArea()
784 DrawablePtr pDst, in damageCopyPlane() argument
793 DAMAGE_GC_OP_PROLOGUE(pGC, pDst); in damageCopyPlane()
795 if (checkGCDamage(pDst, pGC)) { in damageCopyPlane()
798 box.x1 = dstx + pDst->x; in damageCopyPlane()
800 box.y1 = dsty + pDst->y; in damageCopyPlane()
805 damageDamageBox(pDst, &box, pGC->subWindowMode); in damageCopyPlane()
808 ret = (*pGC->ops->CopyPlane) (pSrc, pDst, in damageCopyPlane()
811 damageRegionProcessPending(pDst); in damageCopyPlane()
812 DAMAGE_GC_OP_EPILOGUE(pGC, pDst); in damageCopyPlane()