Lines Matching refs:dst
126 DRIFillSpans(DrawablePtr dst, GCPtr pGC, int nInit,
131 DRISurfaceSetDrawable(dst, &saved);
135 pGC->ops->FillSpans(dst, pGC, nInit, pptInit, pwidthInit, sorted);
139 DRISurfaceRestoreDrawable(dst, &saved);
143 DRISetSpans(DrawablePtr dst, GCPtr pGC, char *pSrc,
148 DRISurfaceSetDrawable(dst, &saved);
152 pGC->ops->SetSpans(dst, pGC, pSrc, pptInit, pwidthInit, nspans, sorted);
156 DRISurfaceRestoreDrawable(dst, &saved);
160 DRIPutImage(DrawablePtr dst, GCPtr pGC,
165 DRISurfaceSetDrawable(dst, &saved);
169 pGC->ops->PutImage(dst, pGC, depth, x, y, w, h, leftPad, format, pBits);
173 DRISurfaceRestoreDrawable(dst, &saved);
177 DRICopyArea(DrawablePtr pSrc, DrawablePtr dst, GCPtr pGC,
184 DRISurfaceSetDrawable(dst, &dstSaved);
188 pReg = pGC->ops->CopyArea(pSrc, dst, pGC, srcx, srcy, w, h, dstx, dsty);
193 DRISurfaceRestoreDrawable(dst, &dstSaved);
199 DRICopyPlane(DrawablePtr pSrc, DrawablePtr dst,
207 DRISurfaceSetDrawable(dst, &dstSaved);
212 pReg = pGC->ops->CopyPlane(pSrc, dst, pGC, srcx, srcy, w, h, dstx, dsty,
218 DRISurfaceRestoreDrawable(dst, &dstSaved);
224 DRIPolyPoint(DrawablePtr dst, GCPtr pGC,
228 DRISurfaceSetDrawable(dst, &saved);
232 pGC->ops->PolyPoint(dst, pGC, mode, npt, pptInit);
236 DRISurfaceRestoreDrawable(dst, &saved);
240 DRIPolylines(DrawablePtr dst, GCPtr pGC,
244 DRISurfaceSetDrawable(dst, &saved);
248 pGC->ops->Polylines(dst, pGC, mode, npt, pptInit);
252 DRISurfaceRestoreDrawable(dst, &saved);
256 DRIPolySegment(DrawablePtr dst, GCPtr pGC,
260 DRISurfaceSetDrawable(dst, &saved);
264 pGC->ops->PolySegment(dst, pGC, nseg, pSeg);
268 DRISurfaceRestoreDrawable(dst, &saved);
272 DRIPolyRectangle(DrawablePtr dst, GCPtr pGC,
276 DRISurfaceSetDrawable(dst, &saved);
280 pGC->ops->PolyRectangle(dst, pGC, nRects, pRects);
284 DRISurfaceRestoreDrawable(dst, &saved);
287 DRIPolyArc(DrawablePtr dst, GCPtr pGC, int narcs, xArc *parcs) {
290 DRISurfaceSetDrawable(dst, &saved);
294 pGC->ops->PolyArc(dst, pGC, narcs, parcs);
298 DRISurfaceRestoreDrawable(dst, &saved);
302 DRIFillPolygon(DrawablePtr dst, GCPtr pGC,
307 DRISurfaceSetDrawable(dst, &saved);
311 pGC->ops->FillPolygon(dst, pGC, shape, mode, count, pptInit);
315 DRISurfaceRestoreDrawable(dst, &saved);
319 DRIPolyFillRect(DrawablePtr dst, GCPtr pGC,
323 DRISurfaceSetDrawable(dst, &saved);
327 pGC->ops->PolyFillRect(dst, pGC, nRectsInit, pRectsInit);
331 DRISurfaceRestoreDrawable(dst, &saved);
335 DRIPolyFillArc(DrawablePtr dst, GCPtr pGC,
339 DRISurfaceSetDrawable(dst, &saved);
343 pGC->ops->PolyFillArc(dst, pGC, narcsInit, parcsInit);
347 DRISurfaceRestoreDrawable(dst, &saved);
351 DRIPolyText8(DrawablePtr dst, GCPtr pGC,
356 DRISurfaceSetDrawable(dst, &saved);
360 ret = pGC->ops->PolyText8(dst, pGC, x, y, count, chars);
364 DRISurfaceRestoreDrawable(dst, &saved);
370 DRIPolyText16(DrawablePtr dst, GCPtr pGC,
375 DRISurfaceSetDrawable(dst, &saved);
379 ret = pGC->ops->PolyText16(dst, pGC, x, y, count, chars);
383 DRISurfaceRestoreDrawable(dst, &saved);
389 DRIImageText8(DrawablePtr dst, GCPtr pGC,
393 DRISurfaceSetDrawable(dst, &saved);
397 pGC->ops->ImageText8(dst, pGC, x, y, count, chars);
401 DRISurfaceRestoreDrawable(dst, &saved);
405 DRIImageText16(DrawablePtr dst, GCPtr pGC,
409 DRISurfaceSetDrawable(dst, &saved);
413 pGC->ops->ImageText16(dst, pGC, x, y, count, chars);
417 DRISurfaceRestoreDrawable(dst, &saved);
421 DRIImageGlyphBlt(DrawablePtr dst, GCPtr pGC,
426 DRISurfaceSetDrawable(dst, &saved);
430 pGC->ops->ImageGlyphBlt(dst, pGC, x, y, nglyphInit, ppciInit, unused);
434 DRISurfaceRestoreDrawable(dst, &saved);
437 static void DRIPolyGlyphBlt(DrawablePtr dst, GCPtr pGC,
442 DRISurfaceSetDrawable(dst, &saved);
446 pGC->ops->PolyGlyphBlt(dst, pGC, x, y, nglyph, ppci, pglyphBase);
450 DRISurfaceRestoreDrawable(dst, &saved);
454 DRIPushPixels(GCPtr pGC, PixmapPtr pBitMap, DrawablePtr dst,
459 DRISurfaceSetDrawable(dst, &dstSaved);
463 pGC->ops->PushPixels(pGC, pBitMap, dst, dx, dy, xOrg, yOrg);
468 DRISurfaceRestoreDrawable(dst, &dstSaved);