Lines Matching refs:pDraw

263 miGetPlane(DrawablePtr pDraw, int planeNum,     /* number of the bitPlane */  in miGetPlane()  argument
288 sx += pDraw->x; in miGetPlane()
289 sy += pDraw->y; in miGetPlane()
295 bitsPerPixel = pDraw->bitsPerPixel; in miGetPlane()
313 (*pDraw->pScreen->GetSpans) (pDraw, width, &pt, &width, 1, in miGetPlane()
321 (*pDraw->pScreen->GetSpans) (pDraw, width, &pt, &width, 1, in miGetPlane()
369 miOpqStipDrawable(DrawablePtr pDraw, GCPtr pGC, RegionPtr prgnSrc, in miOpqStipDrawable() argument
383 pPixmap = (*pDraw->pScreen->CreatePixmap) in miOpqStipDrawable()
384 (pDraw->pScreen, w + srcx, h, 1, CREATE_PIXMAP_USAGE_SCRATCH); in miOpqStipDrawable()
389 pGCT = GetScratchGC(1, pDraw->pScreen); in miOpqStipDrawable()
391 (*pDraw->pScreen->DestroyPixmap) (pPixmap); in miOpqStipDrawable()
447 ValidateGC(pDraw, pGC); in miOpqStipDrawable()
457 (*pGC->ops->PolyFillRect) (pDraw, pGC, 1, &rect); in miOpqStipDrawable()
475 ValidateGC(pDraw, pGC); in miOpqStipDrawable()
481 (*pGC->ops->PolyFillRect) (pDraw, pGC, 1, &rect); in miOpqStipDrawable()
496 ValidateGC(pDraw, pGC); in miOpqStipDrawable()
500 (*pDraw->pScreen->DestroyPixmap) (pPixmap); in miOpqStipDrawable()
600 miGetImage(DrawablePtr pDraw, int sx, int sy, int w, int h, in miGetImage() argument
609 depth = pDraw->depth; in miGetImage()
615 pGC = GetScratchGC(depth, pDraw->pScreen); in miGetImage()
618 pPixmap = (*pDraw->pScreen->CreatePixmap) in miGetImage()
619 (pDraw->pScreen, w, 1, depth, CREATE_PIXMAP_USAGE_SCRATCH); in miGetImage()
640 srcx = sx + pDraw->x; in miGetImage()
641 srcy = sy + pDraw->y; in miGetImage()
646 (*pDraw->pScreen->GetSpans) (pDraw, w, &pt, &width, 1, pDst); in miGetImage()
653 (*pDraw->pScreen->GetSpans) ((DrawablePtr) pPixmap, w, &pt, in miGetImage()
664 (void) miGetPlane(pDraw, ffs(planeMask) - 1, sx, sy, w, h, in miGetImage()
690 miPutImage(DrawablePtr pDraw, GCPtr pGC, int depth, in miPutImage() argument
714 miOpqStipDrawable(pDraw, pGC, prgnSrc, (MiBits *) pImage, in miPutImage()
733 ValidateGC(pDraw, pGC); in miPutImage()
734 (*pGC->ops->PutImage) (pDraw, pGC, 1, x, y, w, h, leftPad, in miPutImage()
743 ValidateGC(pDraw, pGC); in miPutImage()
755 x += pDraw->x; in miPutImage()
756 y += pDraw->y; in miPutImage()
766 (*pGC->ops->SetSpans) (pDraw, pGC, (char *) pImage, pptFirst, in miPutImage()