Lines Matching refs:draw

117         Drawable draw;  in dmxPutImage()  local
119 DMX_GCOPS_SET_DRAWABLE(pDrawable, draw); in dmxPutImage()
143 XPutImage(dmxScreen->beDisplay, draw, pGCPriv->gc, img, in dmxPutImage()
154 XPutImage(dmxScreen->beDisplay, draw, pGCPriv->gc, in dmxPutImage()
232 Drawable draw; in dmxPolyPoint() local
237 DMX_GCOPS_SET_DRAWABLE(pDrawable, draw); in dmxPolyPoint()
239 XDrawPoints(dmxScreen->beDisplay, draw, pGCPriv->gc, in dmxPolyPoint()
254 Drawable draw; in dmxPolylines() local
259 DMX_GCOPS_SET_DRAWABLE(pDrawable, draw); in dmxPolylines()
261 XDrawLines(dmxScreen->beDisplay, draw, pGCPriv->gc, in dmxPolylines()
275 Drawable draw; in dmxPolySegment() local
280 DMX_GCOPS_SET_DRAWABLE(pDrawable, draw); in dmxPolySegment()
282 XDrawSegments(dmxScreen->beDisplay, draw, pGCPriv->gc, in dmxPolySegment()
297 Drawable draw; in dmxPolyRectangle() local
302 DMX_GCOPS_SET_DRAWABLE(pDrawable, draw); in dmxPolyRectangle()
304 XDrawRectangles(dmxScreen->beDisplay, draw, pGCPriv->gc, in dmxPolyRectangle()
319 Drawable draw; in dmxPolyArc() local
324 DMX_GCOPS_SET_DRAWABLE(pDrawable, draw); in dmxPolyArc()
326 XDrawArcs(dmxScreen->beDisplay, draw, pGCPriv->gc, (XArc *) parcs, narcs); in dmxPolyArc()
340 Drawable draw; in dmxFillPolygon() local
345 DMX_GCOPS_SET_DRAWABLE(pDrawable, draw); in dmxFillPolygon()
347 XFillPolygon(dmxScreen->beDisplay, draw, pGCPriv->gc, in dmxFillPolygon()
362 Drawable draw; in dmxPolyFillRect() local
367 DMX_GCOPS_SET_DRAWABLE(pDrawable, draw); in dmxPolyFillRect()
369 XFillRectangles(dmxScreen->beDisplay, draw, pGCPriv->gc, in dmxPolyFillRect()
383 Drawable draw; in dmxPolyFillArc() local
388 DMX_GCOPS_SET_DRAWABLE(pDrawable, draw); in dmxPolyFillArc()
390 XFillArcs(dmxScreen->beDisplay, draw, pGCPriv->gc, (XArc *) parcs, narcs); in dmxPolyFillArc()
407 Drawable draw; in dmxPolyText8() local
418 DMX_GCOPS_SET_DRAWABLE(pDrawable, draw); in dmxPolyText8()
420 XDrawString(dmxScreen->beDisplay, draw, pGCPriv->gc, in dmxPolyText8()
441 Drawable draw; in dmxPolyText16() local
453 DMX_GCOPS_SET_DRAWABLE(pDrawable, draw); in dmxPolyText16()
455 XDrawString16(dmxScreen->beDisplay, draw, pGCPriv->gc, in dmxPolyText16()
473 Drawable draw; in dmxImageText8() local
478 DMX_GCOPS_SET_DRAWABLE(pDrawable, draw); in dmxImageText8()
480 XDrawImageString(dmxScreen->beDisplay, draw, pGCPriv->gc, in dmxImageText8()
495 Drawable draw; in dmxImageText16() local
500 DMX_GCOPS_SET_DRAWABLE(pDrawable, draw); in dmxImageText16()
502 XDrawImageString16(dmxScreen->beDisplay, draw, pGCPriv->gc, in dmxImageText16()
542 dmxFindAlternatePixmap(DrawablePtr pDrawable, XID *draw) in dmxFindAlternatePixmap() argument
569 *draw = pSrcPriv->pixmap; in dmxFindAlternatePixmap()
589 Drawable draw; in dmxGetImage() local
605 DMX_GCOPS_SET_DRAWABLE(&pWindow->drawable, draw); in dmxGetImage()
610 DMX_GCOPS_SET_DRAWABLE(pDrawable, draw); in dmxGetImage()
613 dmxScreen = dmxFindAlternatePixmap(pDrawable, &draw); in dmxGetImage()
619 img = XGetImage(dmxScreen->beDisplay, draw, in dmxGetImage()