Lines Matching refs:pGC

74            GCPtr pGC,  in miCopyArea()  argument
113 if (pGC->subWindowMode == IncludeInferiors) { in miCopyArea()
130 if (pGC->miTranslate) { in miCopyArea()
154 ((pGC->subWindowMode != IncludeInferiors) || in miCopyArea()
237 (*pGC->ops->SetSpans) (pDstDrawable, pGC, (char *) pbits, pptFirst, in miCopyArea()
242 prgnExposed = miHandleExposures(pSrcDrawable, pDstDrawable, pGC, xIn, yIn, in miCopyArea()
369 miOpqStipDrawable(DrawablePtr pDraw, GCPtr pGC, RegionPtr prgnSrc, in miOpqStipDrawable() argument
432 oldfill = pGC->fillStyle; in miOpqStipDrawable()
433 pStipple = pGC->stipple; in miOpqStipDrawable()
436 oldOrg = pGC->patOrg; in miOpqStipDrawable()
444 ChangeGC(NullClient, pGC, in miOpqStipDrawable()
447 ValidateGC(pDraw, pGC); in miOpqStipDrawable()
457 (*pGC->ops->PolyFillRect) (pDraw, pGC, 1, &rect); in miOpqStipDrawable()
470 oldfg = pGC->fgPixel; in miOpqStipDrawable()
471 gcv[0].val = pGC->bgPixel; in miOpqStipDrawable()
474 ChangeGC(NullClient, pGC, GCForeground | GCBackground | GCStipple, gcv); in miOpqStipDrawable()
475 ValidateGC(pDraw, pGC); in miOpqStipDrawable()
481 (*pGC->ops->PolyFillRect) (pDraw, pGC, 1, &rect); in miOpqStipDrawable()
487 gcv[1].val = pGC->fgPixel; in miOpqStipDrawable()
492 ChangeGC(NullClient, pGC, in miOpqStipDrawable()
496 ValidateGC(pDraw, pGC); in miOpqStipDrawable()
513 GCPtr pGC, in miCopyPlane() argument
546 if (pGC->subWindowMode == IncludeInferiors) { in miCopyPlane()
571 miOpqStipDrawable(pDstDrawable, pGC, prgnSrc, ptile, 0, in miCopyPlane()
577 prgnExposed = miHandleExposures(pSrcDrawable, pDstDrawable, pGC, srcx, srcy, in miCopyPlane()
607 GCPtr pGC = NULL; in miGetImage() local
615 pGC = GetScratchGC(depth, pDraw->pScreen); in miGetImage()
616 if (!pGC) in miGetImage()
621 FreeScratchGC(pGC); in miGetImage()
627 ValidateGC((DrawablePtr) pPixmap, pGC); in miGetImage()
630 (*pGC->ops->FillSpans) ((DrawablePtr) pPixmap, pGC, 1, &xpt, &width, in miGetImage()
635 ChangeGC(NullClient, pGC, GCPlaneMask, &gcv); in miGetImage()
636 ValidateGC((DrawablePtr) pPixmap, pGC); in miGetImage()
651 (*pGC->ops->SetSpans) ((DrawablePtr) pPixmap, pGC, pDst, in miGetImage()
659 (*pGC->pScreen->DestroyPixmap) (pPixmap); in miGetImage()
660 FreeScratchGC(pGC); in miGetImage()
690 miPutImage(DrawablePtr pDraw, GCPtr pGC, int depth, in miPutImage() argument
714 miOpqStipDrawable(pDraw, pGC, prgnSrc, (MiBits *) pImage, in miPutImage()
720 depth = pGC->depth; in miPutImage()
721 oldPlanemask = pGC->planemask; in miPutImage()
722 oldFg = pGC->fgPixel; in miPutImage()
723 oldBg = pGC->bgPixel; in miPutImage()
726 ChangeGC(NullClient, pGC, GCForeground | GCBackground, gcv); in miPutImage()
732 ChangeGC(NullClient, pGC, GCPlaneMask, gcv); in miPutImage()
733 ValidateGC(pDraw, pGC); in miPutImage()
734 (*pGC->ops->PutImage) (pDraw, pGC, 1, x, y, w, h, leftPad, in miPutImage()
741 ChangeGC(NullClient, pGC, GCPlaneMask | GCForeground | GCBackground, in miPutImage()
743 ValidateGC(pDraw, pGC); in miPutImage()
754 if (pGC->miTranslate) { in miPutImage()
766 (*pGC->ops->SetSpans) (pDraw, pGC, (char *) pImage, pptFirst, in miPutImage()