repo: rxvt-unicode-sixel action: commit revision: path_from: revision_from: 4b6764b1144321ef8aaf917d3b94542edfb1ee06: path_to: revision_to:
commit 4b6764b1144321ef8aaf917d3b94542edfb1ee06 Author: Marc LehmannDate: Mon Jun 4 15:30:41 2012 +0000 *** empty log message *** diff --git a/src/rxvtimg.C b/src/rxvtimg.C
--- a/src/rxvtimg.C +++ b/src/rxvtimg.C @@ -222,8 +222,10 @@ rxvt_img::transform (int new_width, int new_height, int repeat, double matrix[9] rxvt_img *img = new rxvt_img (s, format, new_width, new_height); Display *dpy = s->display->dpy; - Picture src = XRenderCreatePicture (dpy, pm, format, 0, 0); - Picture dst = XRenderCreatePicture (dpy, img->pm, img->format, 0, 0); + XRenderPictureAttributes pa; + pa.repeat = repeat; + Picture src = XRenderCreatePicture (dpy, pm, format, CPRepeat, &pa); + Picture dst = XRenderCreatePicture (dpy, img->pm, img->format, 0, 0); XTransform xfrm;
-----END OF PAGE-----