1: #include <X/mit-copyright.h> 2: 3: /* $Header: XTileFill.c,v 10.4 86/02/01 15:41:05 tony Rel $ */ 4: /* Copyright Massachusetts Institute of Technology 1985 */ 5: 6: #include "XlibInternal.h" 7: XTileFill (w, x, y, width, height, tile, clipmask, func, planes) 8: Window w; 9: int x, y; 10: int width, height; 11: Pixmap tile; 12: Bitmap clipmask; 13: int func, planes; 14: { 15: register Display *dpy; 16: register XReq *req; 17: 18: GetReq(X_TileFill, w); 19: req->mask = planes; 20: req->func = func; 21: req->param.s[0] = height; 22: req->param.s[1] = width; 23: req->param.s[2] = x; 24: req->param.s[3] = y; 25: req->param.l[2] = tile; 26: req->param.l[3] = clipmask; 27: }