Lines Matching refs:pSrc

670     PicturePtr pSrc, pMask, pDst;  in ProcRenderComposite()  local
682 VERIFY_PICTURE(pSrc, stuff->src, client, DixReadAccess); in ProcRenderComposite()
684 if ((pSrc->pDrawable && in ProcRenderComposite()
685 pSrc->pDrawable->pScreen != pDst->pDrawable->pScreen) || (pMask && in ProcRenderComposite()
696 pSrc, in ProcRenderComposite()
717 PicturePtr pSrc, pDst; in ProcRenderTrapezoids() local
727 VERIFY_PICTURE(pSrc, stuff->src, client, DixReadAccess); in ProcRenderTrapezoids()
731 if (pSrc->pDrawable && pSrc->pDrawable->pScreen != pDst->pDrawable->pScreen) in ProcRenderTrapezoids()
746 CompositeTrapezoids(stuff->op, pSrc, pDst, pFormat, in ProcRenderTrapezoids()
756 PicturePtr pSrc, pDst; in ProcRenderTriangles() local
766 VERIFY_PICTURE(pSrc, stuff->src, client, DixReadAccess); in ProcRenderTriangles()
770 if (pSrc->pDrawable && pSrc->pDrawable->pScreen != pDst->pDrawable->pScreen) in ProcRenderTriangles()
785 CompositeTriangles(stuff->op, pSrc, pDst, pFormat, in ProcRenderTriangles()
795 PicturePtr pSrc, pDst; in ProcRenderTriStrip() local
805 VERIFY_PICTURE(pSrc, stuff->src, client, DixReadAccess); in ProcRenderTriStrip()
809 if (pSrc->pDrawable && pSrc->pDrawable->pScreen != pDst->pDrawable->pScreen) in ProcRenderTriStrip()
824 CompositeTriStrip(stuff->op, pSrc, pDst, pFormat, in ProcRenderTriStrip()
834 PicturePtr pSrc, pDst; in ProcRenderTriFan() local
844 VERIFY_PICTURE(pSrc, stuff->src, client, DixReadAccess); in ProcRenderTriFan()
848 if (pSrc->pDrawable && pSrc->pDrawable->pScreen != pDst->pDrawable->pScreen) in ProcRenderTriFan()
863 CompositeTriFan(stuff->op, pSrc, pDst, pFormat, in ProcRenderTriFan()
1008 PicturePtr pSrc = NULL, pDst = NULL; in ProcRenderAddGlyphs() local
1110 pSrc = CreatePicture(0, &pSrcPix->drawable, in ProcRenderAddGlyphs()
1113 if (!pSrc) { in ProcRenderAddGlyphs()
1144 pSrc, in ProcRenderAddGlyphs()
1147 FreePicture((void *) pSrc, 0); in ProcRenderAddGlyphs()
1148 pSrc = NULL; in ProcRenderAddGlyphs()
1178 if (pSrc) in ProcRenderAddGlyphs()
1179 FreePicture((void *) pSrc, 0); in ProcRenderAddGlyphs()
1230 PicturePtr pSrc, pDst; in ProcRenderCompositeGlyphs() local
1265 VERIFY_PICTURE(pSrc, stuff->src, client, DixReadAccess); in ProcRenderCompositeGlyphs()
1269 if (pSrc->pDrawable && pSrc->pDrawable->pScreen != pDst->pDrawable->pScreen) in ProcRenderCompositeGlyphs()
1378 pSrc, in ProcRenderCompositeGlyphs()
1450 PicturePtr pSrc; in ProcRenderCreateCursor() local
1467 VERIFY_PICTURE(pSrc, stuff->src, client, DixReadAccess); in ProcRenderCreateCursor()
1468 if (!pSrc->pDrawable) in ProcRenderCreateCursor()
1470 pScreen = pSrc->pDrawable->pScreen; in ProcRenderCreateCursor()
1471 width = pSrc->pDrawable->width; in ProcRenderCreateCursor()
1472 height = pSrc->pDrawable->height; in ProcRenderCreateCursor()
1496 if (pSrc->pDrawable->type == DRAWABLE_WINDOW) in ProcRenderCreateCursor()
1497 pScreen->SourceValidate(pSrc->pDrawable, 0, 0, width, height, in ProcRenderCreateCursor()
1500 if (pSrc->format == PICT_a8r8g8b8) { in ProcRenderCreateCursor()
1501 (*pScreen->GetImage) (pSrc->pDrawable, in ProcRenderCreateCursor()
1536 pSrc, 0, pPicture, 0, 0, 0, 0, 0, 0, width, height); in ProcRenderCreateCursor()