ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/rxvtimg.C
(Generate patch)

Comparing rxvt-unicode/src/rxvtimg.C (file contents):
Revision 1.33 by root, Thu Jun 7 08:12:55 2012 UTC vs.
Revision 1.114 by sf-exg, Wed Jan 10 06:06:16 2024 UTC

1/*----------------------------------------------------------------------*
2 * File: rxvtimg.C
3 *----------------------------------------------------------------------*
4 *
5 * All portions of code are copyright by their respective author/s.
6 * Copyright (c) 2012 Marc Lehmann <schmorp@schmorp.de>
7 * Copyright (c) 2012 Emanuele Giaquinta <e.giaquinta@glauco.it>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 *---------------------------------------------------------------------*/
23
24#include <string.h>
1#include <math.h> 25#include <math.h>
2#include "../config.h" 26#include "../config.h"
3#include "rxvt.h" 27#include "rxvt.h"
4 28
5#if HAVE_IMG 29#if HAVE_IMG
6 30
31typedef rxvt_img::nv nv;
32
33namespace
34{
35 struct mat3x3
36 {
37 nv v[3][3];
38
39 mat3x3 ()
40 {
41 }
42
43 mat3x3 (const nv *matrix)
44 {
45 memcpy (v, matrix, sizeof (v));
46 }
47
48 mat3x3 (nv v11, nv v12, nv v13, nv v21, nv v22, nv v23, nv v31, nv v32, nv v33)
49 {
50 v[0][0] = v11; v[0][1] = v12; v[0][2] = v13;
51 v[1][0] = v21; v[1][1] = v22; v[1][2] = v23;
52 v[2][0] = v31; v[2][1] = v32; v[2][2] = v33;
53 }
54
55 mat3x3 inverse ();
56
57 nv *operator [](int i) { return &v[i][0]; }
58 const nv *operator [](int i) const { return &v[i][0]; }
59
60 operator const nv * () const { return &v[0][0]; }
61 operator nv * () { return &v[0][0]; }
62
63 // quite inefficient, hopefully gcc pulls the w calc out of any loops
64 nv apply1 (int i, nv x, nv y)
65 {
66 mat3x3 &m = *this;
67
68 nv v = m[i][0] * x + m[i][1] * y + m[i][2];
69 nv w = m[2][0] * x + m[2][1] * y + m[2][2];
70
71 return v * (1. / w);
72 }
73
74 static mat3x3 translate (nv x, nv y);
75 static mat3x3 scale (nv s, nv t);
76 static mat3x3 rotate (nv phi);
77 };
78
79 mat3x3
80 mat3x3::inverse ()
81 {
82 mat3x3 &m = *this;
83 mat3x3 inv;
84
85 nv s0 = m[2][2] * m[1][1] - m[2][1] * m[1][2];
86 nv s1 = m[2][1] * m[0][2] - m[2][2] * m[0][1];
87 nv s2 = m[1][2] * m[0][1] - m[1][1] * m[0][2];
88
89 nv invdet = 1. / (m[0][0] * s0 + m[1][0] * s1 + m[2][0] * s2);
90
91 inv[0][0] = invdet * s0;
92 inv[0][1] = invdet * s1;
93 inv[0][2] = invdet * s2;
94
95 inv[1][0] = invdet * (m[2][0] * m[1][2] - m[2][2] * m[1][0]);
96 inv[1][1] = invdet * (m[2][2] * m[0][0] - m[2][0] * m[0][2]);
97 inv[1][2] = invdet * (m[1][0] * m[0][2] - m[1][2] * m[0][0]);
98
99 inv[2][0] = invdet * (m[2][1] * m[1][0] - m[2][0] * m[1][1]);
100 inv[2][1] = invdet * (m[2][0] * m[0][1] - m[2][1] * m[0][0]);
101 inv[2][2] = invdet * (m[1][1] * m[0][0] - m[1][0] * m[0][1]);
102
103 return inv;
104 }
105
106 static mat3x3
107 operator *(const mat3x3 &a, const mat3x3 &b)
108 {
109 mat3x3 r;
110
111 for (int i = 0; i < 3; ++i)
112 for (int j = 0; j < 3; ++j)
113 r[i][j] = a[i][0] * b[0][j]
114 + a[i][1] * b[1][j]
115 + a[i][2] * b[2][j];
116
117 return r;
118 }
119
120 mat3x3
121 mat3x3::translate (nv x, nv y)
122 {
123 return mat3x3 (
124 1, 0, x,
125 0, 1, y,
126 0, 0, 1
127 );
128 }
129
130 mat3x3
131 mat3x3::scale (nv s, nv t)
132 {
133 return mat3x3 (
134 s, 0, 0,
135 0, t, 0,
136 0, 0, 1
137 );
138 }
139
140 // clockwise
141 mat3x3
142 mat3x3::rotate (nv phi)
143 {
144 nv s = sin (phi);
145 nv c = cos (phi);
146
147 return mat3x3 (
148 c, -s, 0,
149 s, c, 0,
150 0, 0, 1
151 );
152 }
153
154 struct composer
155 {
156 rxvt_img *srcimg, *dstimg;
157 Picture src, dst, msk;
158 Display *dpy;
159
160 ecb_noinline
161 composer (rxvt_img *srcimg, rxvt_img *dstimg = 0)
162 : srcimg (srcimg), dstimg (dstimg), msk (0)
163 {
164 if (!this->dstimg)
165 this->dstimg = srcimg->new_empty ();
166 else if (!this->dstimg->pm) // somewhat unsatisfying
167 this->dstimg->alloc ();
168
169 dpy = srcimg->d->dpy;
170 src = srcimg->picture ();
171 dst = this->dstimg->picture ();
172 }
173
174 ecb_noinline
175 void mask (bool rgb = true, int w = 1, int h = 1)
176 {
177 Pixmap pixmap = XCreatePixmap (dpy, srcimg->pm, w, h, rgb ? 32 : 8);
178
179 XRenderPictFormat *format = XRenderFindStandardFormat (dpy, rgb ? PictStandardARGB32 : PictStandardA8);
180 XRenderPictureAttributes pa;
181 pa.repeat = RepeatNormal;
182 pa.component_alpha = rgb;
183 msk = XRenderCreatePicture (dpy, pixmap, format, CPRepeat | CPComponentAlpha, &pa);
184
185 XFreePixmap (dpy, pixmap);
186
187 ecb_assume (msk);
188 }
189
190 // CreateSolidFill creates a very very very weird picture
191 void mask (const rgba &c)
192 {
193 // the casts are needed in C++11 (see 8.5.1)
194 XRenderColor rc = {
195 (unsigned short)(c.r * c.a / 65535),
196 (unsigned short)(c.g * c.a / 65535),
197 (unsigned short)(c.b * c.a / 65535),
198 c.a
199 };
200 msk = XRenderCreateSolidFill (dpy, &rc);
201 ecb_assume (msk);
202 }
203
204 void fill (const rgba &c)
205 {
206 XRenderColor rc = {
207 (unsigned short)(c.r * c.a / 65535),
208 (unsigned short)(c.g * c.a / 65535),
209 (unsigned short)(c.b * c.a / 65535),
210 c.a
211 };
212
213 XRenderFillRectangle (dpy, PictOpSrc, msk, &rc, 0, 0, 1, 1);
214 }
215
216 operator rxvt_img *()
217 {
218 return dstimg;
219 }
220
221 ecb_noinline
222 ~composer ()
223 {
224 XRenderFreePicture (dpy, src);
225 XRenderFreePicture (dpy, dst);
226 if (msk) XRenderFreePicture (dpy, msk);
227 }
228 };
229}
230
231static XRenderPictFormat *
232find_alpha_format_for (Display *dpy, XRenderPictFormat *format)
233{
234 if (format->direct.alphaMask)
235 return format; // already has alpha
236
237 // try to find a suitable alpha format, one bit alpha is enough for our purposes
238 if (format->type == PictTypeDirect)
239 for (int n = 0; XRenderPictFormat *f = XRenderFindFormat (dpy, 0, 0, n); ++n)
240 if (f->direct.alphaMask
241 && f->type == PictTypeDirect
242 && ecb_popcount32 (f->direct.redMask ) >= ecb_popcount32 (format->direct.redMask )
243 && ecb_popcount32 (f->direct.greenMask) >= ecb_popcount32 (format->direct.greenMask)
244 && ecb_popcount32 (f->direct.blueMask ) >= ecb_popcount32 (format->direct.blueMask ))
245 return f;
246
247 // should be a very good fallback
248 return XRenderFindStandardFormat (dpy, PictStandardARGB32);
249}
250
7rxvt_img::rxvt_img (rxvt_screen *screen, XRenderPictFormat *format, int x, int y, int width, int height) 251rxvt_img::rxvt_img (rxvt_screen *screen, XRenderPictFormat *format, int x, int y, int width, int height, int repeat)
8: s(screen), x(x), y(y), w(width), h(height), format(format), repeat(RepeatNormal), 252: d(screen->display), x(x), y(y), w(width), h(height), format(format), repeat(repeat),
9 pm(0), refcnt(0) 253 pm(0), ref(0)
254{
255}
256
257rxvt_img::rxvt_img (rxvt_display *display, XRenderPictFormat *format, int x, int y, int width, int height, int repeat)
258: d(display), x(x), y(y), w(width), h(height), format(format), repeat(repeat),
259 pm(0), ref(0)
10{ 260{
11} 261}
12 262
13rxvt_img::rxvt_img (const rxvt_img &img) 263rxvt_img::rxvt_img (const rxvt_img &img)
14: s(img.s), x(img.x), y(img.y), w(img.w), h(img.h), format(img.format), repeat(img.repeat), pm(img.pm), refcnt(img.refcnt) 264: d(img.d), x(img.x), y(img.y), w(img.w), h(img.h), format(img.format), repeat(img.repeat), pm(img.pm), ref(img.ref)
15{ 265{
16 if (refcnt)
17 ++*refcnt; 266 ++ref->cnt;
18} 267}
19
20#if 0
21rxvt_img::rxvt_img (rxvt_screen *screen, XRenderPictFormat *format, int width, int height, Pixmap pixmap)
22: s(screen), x(0), y(0), w(width), h(height), format(format), repeat(RepeatNormal), shared(false), pm(pixmap)
23{
24}
25#endif
26 268
27rxvt_img * 269rxvt_img *
28rxvt_img::new_from_root (rxvt_screen *s) 270rxvt_img::new_from_root (rxvt_screen *s)
29{ 271{
30 Display *dpy = s->display->dpy; 272 Display *dpy = s->dpy;
31 unsigned int root_pm_w, root_pm_h; 273 unsigned int root_pm_w, root_pm_h;
32 Pixmap root_pixmap = s->display->get_pixmap_property (s->display->xa[XA_XROOTPMAP_ID]); 274 Pixmap root_pixmap = s->display->get_pixmap_property (s->display->xa [XA_XROOTPMAP_ID]);
33 if (root_pixmap == None) 275 if (root_pixmap == None)
34 root_pixmap = s->display->get_pixmap_property (s->display->xa[XA_ESETROOT_PMAP_ID]); 276 root_pixmap = s->display->get_pixmap_property (s->display->xa [XA_ESETROOT_PMAP_ID]);
35 277
36 if (root_pixmap == None) 278 if (root_pixmap == None)
37 return 0; 279 return 0;
38 280
39 Window wdummy; 281 Window wdummy;
51 root_pm_w, 293 root_pm_w,
52 root_pm_h 294 root_pm_h
53 ); 295 );
54 296
55 img->pm = root_pixmap; 297 img->pm = root_pixmap;
298 img->ref = new pixref (root_pm_w, root_pm_h);
299 img->ref->ours = false;
300
301 return img;
302}
303
304# if HAVE_PIXBUF
305
306rxvt_img *
307rxvt_img::new_from_pixbuf (rxvt_screen *s, GdkPixbuf *pb)
308{
309 Display *dpy = s->dpy;
310
311 int width = gdk_pixbuf_get_width (pb);
312 int height = gdk_pixbuf_get_height (pb);
313
314 if (width > 32767 || height > 32767) // well, we *could* upload in chunks
315 rxvt_fatal ("rxvt_img::new_from_pixbuf: image too big (maximum size 32768x32768).\n");
316
317 // since we require rgb24/argb32 formats from xrender we assume
318 // that both 24 and 32 bpp MUST be supported by any screen that supports xrender
319
320 int byte_order = ecb_big_endian () ? MSBFirst : LSBFirst;
321
322 XImage xi;
323
324 xi.width = width;
325 xi.height = height;
326 xi.xoffset = 0;
327 xi.format = ZPixmap;
328 xi.byte_order = ImageByteOrder (dpy);
329 xi.bitmap_unit = 0; //XY only, unused
330 xi.bitmap_bit_order = 0; //XY only, unused
331 xi.bitmap_pad = BitmapPad (dpy);
332 xi.depth = 32;
333 xi.bytes_per_line = 0;
334 xi.bits_per_pixel = 32; //Z only
335 xi.red_mask = 0x00000000; //Z only, unused
336 xi.green_mask = 0x00000000; //Z only, unused
337 xi.blue_mask = 0x00000000; //Z only, unused
338 xi.obdata = 0; // probably unused
339
340 bool byte_order_mismatch = byte_order != xi.byte_order;
341
342 if (!XInitImage (&xi))
343 rxvt_fatal ("unable to initialise ximage, please report.\n");
344
345 if (height > INT_MAX / xi.bytes_per_line)
346 rxvt_fatal ("rxvt_img::new_from_pixbuf: image too big for Xlib.\n");
347
348 xi.data = (char *)rxvt_malloc (height * xi.bytes_per_line);
349
350 int rowstride = gdk_pixbuf_get_rowstride (pb);
351 bool pb_has_alpha = gdk_pixbuf_get_has_alpha (pb);
352 unsigned char *row = gdk_pixbuf_get_pixels (pb);
353
354 char *line = xi.data;
355
356 for (int y = 0; y < height; y++)
357 {
358 unsigned char *src = row;
359 uint32_t *dst = (uint32_t *)line;
360
361 for (int x = 0; x < width; x++)
362 {
363 uint8_t r = *src++;
364 uint8_t g = *src++;
365 uint8_t b = *src++;
366 uint8_t a = *src;
367
368 // this is done so it can be jump-free, but newer gcc's clone inner the loop
369 a = pb_has_alpha ? a : 255;
370 src += pb_has_alpha;
371
372 r = (r * a + 127) / 255;
373 g = (g * a + 127) / 255;
374 b = (b * a + 127) / 255;
375
376 uint32_t v = (a << 24) | (r << 16) | (g << 8) | b;
377
378 if (ecb_big_endian () ? !byte_order_mismatch : byte_order_mismatch)
379 v = ecb_bswap32 (v);
380
381 *dst++ = v;
382 }
383
384 row += rowstride;
385 line += xi.bytes_per_line;
386 }
387
388 rxvt_img *img = new rxvt_img (s, XRenderFindStandardFormat (dpy, PictStandardARGB32), 0, 0, width, height);
389 img->alloc ();
390
391 GC gc = XCreateGC (dpy, img->pm, 0, 0);
392 XPutImage (dpy, img->pm, gc, &xi, 0, 0, 0, 0, width, height);
393 XFreeGC (dpy, gc);
394
395 free (xi.data);
56 396
57 return img; 397 return img;
58} 398}
59 399
60rxvt_img * 400rxvt_img *
62{ 402{
63 GError *err = 0; 403 GError *err = 0;
64 GdkPixbuf *pb = gdk_pixbuf_new_from_file (filename, &err); 404 GdkPixbuf *pb = gdk_pixbuf_new_from_file (filename, &err);
65 405
66 if (!pb) 406 if (!pb)
407 try
408 {
67 rxvt_fatal ("rxvt_img::new_from_file: %s\n", err->message); 409 rxvt_fatal ("rxvt_img::new_from_file: %s\n", err->message);
410 }
411 catch (...)
412 {
413 g_error_free (err);
414 throw;
415 }
68 416
69 rxvt_img *img = new rxvt_img ( 417 rxvt_img *img = new_from_pixbuf (s, pb);
70 s,
71 XRenderFindStandardFormat (s->display->dpy, gdk_pixbuf_get_has_alpha (pb) ? PictStandardARGB32 : PictStandardRGB24),
72 0,
73 0,
74 gdk_pixbuf_get_width (pb),
75 gdk_pixbuf_get_height (pb)
76 );
77 img->alloc ();
78 img->render_pixbuf (pb, 0, 0, img->w, img->h, 0, 0);
79 418
80 g_object_unref (pb); 419 g_object_unref (pb);
81 420
82 return img; 421 return img;
83} 422}
423
424# endif
84 425
85void 426void
86rxvt_img::destroy () 427rxvt_img::destroy ()
87{ 428{
88 if (!refcnt || --*refcnt) 429 if (--ref->cnt)
89 return; 430 return;
90 431
91 if (pm) 432 if (pm && ref->ours)
92 XFreePixmap (s->display->dpy, pm); 433 XFreePixmap (d->dpy, pm);
93 434
94 delete refcnt; 435 delete ref;
95} 436}
96 437
97rxvt_img::~rxvt_img () 438rxvt_img::~rxvt_img ()
98{ 439{
99 destroy (); 440 destroy ();
100} 441}
101 442
102void 443void
103rxvt_img::alloc () 444rxvt_img::alloc ()
104{ 445{
105 pm = XCreatePixmap (s->display->dpy, s->display->root, w, h, format->depth); 446 pm = XCreatePixmap (d->dpy, d->root, w, h, format->depth);
106 refcnt = new int (1); 447 ref = new pixref (w, h);
448}
449
450rxvt_img *
451rxvt_img::new_empty ()
452{
453 rxvt_img *img = new rxvt_img (d, format, x, y, w, h, repeat);
454 img->alloc ();
455
456 return img;
457}
458
459Picture
460rxvt_img::picture ()
461{
462 Display *dpy = d->dpy;
463
464 XRenderPictureAttributes pa;
465 pa.repeat = repeat;
466 Picture pic = XRenderCreatePicture (dpy, pm, format, CPRepeat, &pa);
467
468 return pic;
107} 469}
108 470
109void 471void
110rxvt_img::unshare () 472rxvt_img::unshare ()
111{ 473{
112 if (refcnt && *refcnt == 1) 474 if (ref->cnt == 1 && ref->ours)
113 return; 475 return;
114 476
115 Pixmap pm2 = XCreatePixmap (s->display->dpy, s->display->root, w, h, format->depth); 477 Pixmap pm2 = XCreatePixmap (d->dpy, d->root, ref->w, ref->h, format->depth);
116 GC gc = XCreateGC (s->display->dpy, pm, 0, 0); 478 GC gc = XCreateGC (d->dpy, pm, 0, 0);
117 XCopyArea (s->display->dpy, pm, pm2, gc, 0, 0, w, h, 0, 0); 479 XCopyArea (d->dpy, pm, pm2, gc, 0, 0, ref->w, ref->h, 0, 0);
118 XFreeGC (s->display->dpy, gc); 480 XFreeGC (d->dpy, gc);
119 481
120 destroy (); 482 destroy ();
121 483
122 pm = pm2; 484 pm = pm2;
123 refcnt = new int (1); 485 ref = new pixref (ref->w, ref->h);
124} 486}
125 487
126void 488void
489rxvt_img::fill (const rgba &c, int x, int y, int w, int h)
490{
491 XRenderColor rc = { c.r, c.g, c.b, c.a };
492
493 Display *dpy = d->dpy;
494 Picture src = picture ();
495 XRenderFillRectangle (dpy, PictOpSrc, src, &rc, x, y, w, h);
496 XRenderFreePicture (dpy, src);
497}
498
499void
127rxvt_img::fill (const rxvt_color &c) 500rxvt_img::fill (const rgba &c)
128{ 501{
129 XGCValues gcv; 502 fill (c, 0, 0, w, h);
130 gcv.foreground = c; 503}
131 GC gc = XCreateGC (s->display->dpy, pm, GCForeground, &gcv); 504
132 XFillRectangle (s->display->dpy, pm, gc, 0, 0, w, h); 505void
133 XFreeGC (s->display->dpy, gc); 506rxvt_img::add_alpha ()
507{
508 if (format->direct.alphaMask)
509 return;
510
511 composer cc (this, new rxvt_img (d, find_alpha_format_for (d->dpy, format), x, y, w, h, repeat));
512
513 XRenderComposite (cc.dpy, PictOpSrc, cc.src, None, cc.dst, 0, 0, 0, 0, 0, 0, w, h);
514
515 rxvt_img *img = cc;
516
517 ::swap (img->ref, ref);
518 ::swap (img->pm , pm );
519
520 delete img;
134} 521}
135 522
136static void 523static void
137get_gaussian_kernel (int radius, int width, double *kernel, XFixed *params) 524get_gaussian_kernel (int radius, int width, nv *kernel, XFixed *params)
138{ 525{
139 double sigma = radius / 2.0; 526 nv sigma = radius / 2.0;
140 double scale = sqrt (2.0 * M_PI) * sigma; 527 nv scale = sqrt (2.0 * M_PI) * sigma;
141 double sum = 0.0; 528 nv sum = 0.0;
142 529
143 for (int i = 0; i < width; i++) 530 for (int i = 0; i < width; i++)
144 { 531 {
145 double x = i - width / 2; 532 nv x = i - width / 2;
146 kernel[i] = exp (-(x * x) / (2.0 * sigma * sigma)) / scale; 533 kernel[i] = exp (-(x * x) / (2.0 * sigma * sigma)) / scale;
147 sum += kernel[i]; 534 sum += kernel[i];
148 } 535 }
149 536
150 params[0] = XDoubleToFixed (width); 537 params[0] = XDoubleToFixed (width);
155} 542}
156 543
157rxvt_img * 544rxvt_img *
158rxvt_img::blur (int rh, int rv) 545rxvt_img::blur (int rh, int rv)
159{ 546{
160 if (!(s->display->flags & DISPLAY_HAS_RENDER_CONV)) 547 if (!(d->flags & DISPLAY_HAS_RENDER_CONV))
161 return clone (); 548 return clone ();
162 549
163 Display *dpy = s->display->dpy; 550 Display *dpy = d->dpy;
164 int size = max (rh, rv) * 2 + 1; 551 int size = max (rh, rv) * 2 + 1;
165 double *kernel = (double *)malloc (size * sizeof (double)); 552 nv *kernel = (nv *)malloc (size * sizeof (nv));
166 XFixed *params = (XFixed *)malloc ((size + 2) * sizeof (XFixed)); 553 XFixed *params = rxvt_temp_buf<XFixed> (size + 2);
167 rxvt_img *img = new rxvt_img (s, format, x, y, w, h); 554 rxvt_img *img = new_empty ();
168 img->alloc ();
169 555
170 XRenderPictureAttributes pa; 556 XRenderPictureAttributes pa;
171
172 pa.repeat = RepeatPad; 557 pa.repeat = RepeatPad;
173 Picture src = XRenderCreatePicture (dpy, pm , format, CPRepeat, &pa); 558 Picture src = XRenderCreatePicture (dpy, pm, format, CPRepeat, &pa);
174 Picture dst = XRenderCreatePicture (dpy, img->pm, format, CPRepeat, &pa); 559 Picture dst = XRenderCreatePicture (dpy, img->pm, format, 0, 0);
175 560
176 Pixmap tmp_pm = XCreatePixmap (dpy, pm, w, h, format->depth); 561 Pixmap tmp_pm = XCreatePixmap (dpy, pm, w, h, format->depth);
177 Picture tmp = XRenderCreatePicture (dpy, tmp_pm , format, CPRepeat, &pa); 562 Picture tmp = XRenderCreatePicture (dpy, tmp_pm , format, CPRepeat, &pa);
178 XFreePixmap (dpy, tmp_pm); 563 XFreePixmap (dpy, tmp_pm);
179 564
195 580
196 size = rv * 2 + 1; 581 size = rv * 2 + 1;
197 get_gaussian_kernel (rv, size, kernel, params); 582 get_gaussian_kernel (rv, size, kernel, params);
198 ::swap (params[0], params[1]); 583 ::swap (params[0], params[1]);
199 584
200 XRenderSetPictureFilter (dpy, src, FilterConvolution, params, size+2); 585 XRenderSetPictureFilter (dpy, tmp, FilterConvolution, params, size+2);
201 XRenderComposite (dpy, 586 XRenderComposite (dpy,
202 PictOpSrc, 587 PictOpSrc,
203 tmp, 588 tmp,
204 None, 589 None,
205 dst, 590 dst,
208 0, 0, 593 0, 0,
209 w, h); 594 w, h);
210 } 595 }
211 596
212 free (kernel); 597 free (kernel);
213 free (params); 598
214 XRenderFreePicture (dpy, src); 599 XRenderFreePicture (dpy, src);
215 XRenderFreePicture (dpy, dst); 600 XRenderFreePicture (dpy, dst);
216 XRenderFreePicture (dpy, tmp); 601 XRenderFreePicture (dpy, tmp);
217 602
218 return img; 603 return img;
219} 604}
220 605
221static Picture 606rxvt_img *
222create_xrender_mask (Display *dpy, Drawable drawable, Bool argb) 607rxvt_img::muladd (nv mul, nv add)
223{ 608{
224 Pixmap pixmap = XCreatePixmap (dpy, drawable, 1, 1, argb ? 32 : 8); 609 // STEP 1: double the image width, fill all odd columns with white (==1)
225 610
226 XRenderPictFormat *format = XRenderFindStandardFormat (dpy, argb ? PictStandardARGB32 : PictStandardA8); 611 rxvt_img *img = new rxvt_img (d, format, 0, 0, w * 2, h, repeat);
227 XRenderPictureAttributes pa; 612 composer cc (this, img);
228 pa.repeat = True;
229 Picture mask = XRenderCreatePicture (dpy, pixmap, format, CPRepeat, &pa);
230 613
231 XFreePixmap (dpy, pixmap); 614 // why the hell does XRenderSetPictureTransform want a writable matrix :(
615 // that keeps us from just static const'ing this matrix.
616 XTransform h_double = {
617 0x08000, 0, 0,
618 0, 0x10000, 0,
619 0, 0, 0x10000
620 };
232 621
233 return mask; 622 XRenderSetPictureFilter (cc.dpy, cc.src, "nearest", 0, 0);
623 XRenderSetPictureTransform (cc.dpy, cc.src, &h_double);
624 XRenderComposite (cc.dpy, PictOpSrc, cc.src, None, cc.dst, 0, 0, 0, 0, 0, 0, w * 2, h);
625
626 cc.mask (false, 2, 1);
627
628 static const XRenderColor c0 = { 0, 0, 0, 0 };
629 XRenderFillRectangle (cc.dpy, PictOpSrc, cc.msk, &c0, 0, 0, 1, 1);
630 static const XRenderColor c1 = { 65535, 65535, 65535, 65535 };
631 XRenderFillRectangle (cc.dpy, PictOpSrc, cc.msk, &c1, 1, 0, 1, 1);
632
633 Picture white = XRenderCreateSolidFill (cc.dpy, &c1);
634
635 XRenderComposite (cc.dpy, PictOpOver, white, cc.msk, cc.dst, 0, 0, 0, 0, 0, 0, w * 2, h);
636
637 XRenderFreePicture (cc.dpy, white);
638
639 // STEP 2: convolve the image with a 3x1 filter
640 // a 2x1 filter would obviously suffice, but given the total lack of specification
641 // for xrender, I expect different xrender implementations to randomly diverge.
642 // we also halve the image, and hope for the best (again, for lack of specs).
643 composer cc2 (img);
644
645 XFixed kernel [] = {
646 XDoubleToFixed (3), XDoubleToFixed (1),
647 XDoubleToFixed (0), XDoubleToFixed (mul), XDoubleToFixed (add)
648 };
649
650 XTransform h_halve = {
651 0x20000, 0, 0,
652 0, 0x10000, 0,
653 0, 0, 0x10000
654 };
655
656 XRenderSetPictureFilter (cc.dpy, cc2.src, "nearest", 0, 0);
657 XRenderSetPictureTransform (cc.dpy, cc2.src, &h_halve);
658 XRenderSetPictureFilter (cc.dpy, cc2.src, FilterConvolution, kernel, ecb_array_length (kernel));
659
660 XRenderComposite (cc.dpy, PictOpSrc, cc2.src, None, cc2.dst, 0, 0, 0, 0, 0, 0, w * 2, h);
661
662 delete img;
663
664 return cc2;
665}
666
667ecb_noinline static void
668extract (int32_t cl0, int32_t cl1, int32_t &c, unsigned short &xc)
669{
670 int32_t x = clamp (c, cl0, cl1);
671 c -= x;
672 xc = x;
673}
674
675ecb_noinline static bool
676extract (int32_t cl0, int32_t cl1, int32_t &r, int32_t &g, int32_t &b, int32_t &a, unsigned short &xr, unsigned short &xg, unsigned short &xb, unsigned short &xa)
677{
678 extract (cl0, cl1, r, xr);
679 extract (cl0, cl1, g, xg);
680 extract (cl0, cl1, b, xb);
681 extract (cl0, cl1, a, xa);
682
683 return xr | xg | xb | xa;
234} 684}
235 685
236void 686void
237rxvt_img::brightness (unsigned short r, unsigned short g, unsigned short b, unsigned short a) 687rxvt_img::brightness (int32_t r, int32_t g, int32_t b, int32_t a)
238{ 688{
689 unshare ();
690
239 Display *dpy = s->display->dpy; 691 Display *dpy = d->dpy;
240 Picture src = create_xrender_mask (dpy, pm, True);
241 Picture dst = XRenderCreatePicture (dpy, pm, format, 0, 0); 692 Picture dst = XRenderCreatePicture (dpy, pm, format, 0, 0);
242 693
694 // loop should not be needed for brightness, as only -1..1 makes sense
695 //while (r | g | b | a)
696 {
243 XRenderColor mask_c; 697 XRenderColor mask_c;
244 mask_c.red = r; 698
245 mask_c.green = g; 699 if (extract (0, 65535, r, g, b, a, mask_c.red, mask_c.green, mask_c.blue, mask_c.alpha))
246 mask_c.blue = b;
247 mask_c.alpha = a;
248 XRenderFillRectangle (dpy, PictOpSrc, src, &mask_c, 0, 0, 1, 1); 700 XRenderFillRectangle (dpy, PictOpAdd, dst, &mask_c, 0, 0, w, h);
249 701
250 XRenderComposite (dpy, PictOpAdd, src, None, dst, 0, 0, 0, 0, 0, 0, w, h); 702 if (extract (-65535, 0, r, g, b, a, mask_c.red, mask_c.green, mask_c.blue, mask_c.alpha))
703 {
704 XRenderColor mask_w = { 65535, 65535, 65535, 65535 };
705 XRenderFillRectangle (dpy, PictOpDifference, dst, &mask_w, 0, 0, w, h);
706 mask_c.red = -mask_c.red; //TODO: verify that doing clamp, assign, and negation does the right thing
707 mask_c.green = -mask_c.green;
708 mask_c.blue = -mask_c.blue;
709 mask_c.alpha = -mask_c.alpha;
710 XRenderFillRectangle (dpy, PictOpAdd, dst, &mask_c, 0, 0, w, h);
711 XRenderFillRectangle (dpy, PictOpDifference, dst, &mask_w, 0, 0, w, h);
712 }
713 }
251 714
252 XRenderFreePicture (dpy, src);
253 XRenderFreePicture (dpy, dst); 715 XRenderFreePicture (dpy, dst);
254} 716}
255 717
256void 718void
257rxvt_img::contrast (unsigned short r, unsigned short g, unsigned short b, unsigned short a) 719rxvt_img::contrast (int32_t r, int32_t g, int32_t b, int32_t a)
258{ 720{
259 if (!(s->display->flags & DISPLAY_HAS_RENDER_MUL)) 721 if (r < 0 || g < 0 || b < 0 || a < 0)
260 return; 722 rxvt_fatal ("rxvt_img::contrast does not support negative values.\n");
261 723
262 Display *dpy = s->display->dpy; 724 // premultiply (yeah, these are not exact, sue me or fix it)
263 Picture src = create_xrender_mask (dpy, pm, True); 725 r = (r * (a >> 8)) >> 8;
264 Picture dst = XRenderCreatePicture (dpy, pm, format, 0, 0); 726 g = (g * (a >> 8)) >> 8;
727 b = (b * (a >> 8)) >> 8;
265 728
729 composer cc (this);
730 rxvt_img *img = cc;
731 img->fill (rgba (0, 0, 0, 0));
732
733 cc.mask (true);
734
735 //TODO: this operator does not yet implement some useful contrast
736 while (r | g | b | a)
737 {
266 XRenderColor mask_c; 738 XRenderColor mask_c;
267 mask_c.red = r;
268 mask_c.green = g;
269 mask_c.blue = b;
270 mask_c.alpha = a;
271 XRenderFillRectangle (dpy, PictOpSrc, src, &mask_c, 0, 0, 1, 1);
272 739
273 XRenderComposite (dpy, PictOpMultiply, src, None, dst, 0, 0, 0, 0, 0, 0, w, h); 740 if (extract (0, 65535, r, g, b, a, mask_c.red, mask_c.green, mask_c.blue, mask_c.alpha))
274
275 XRenderFreePicture (dpy, src);
276 XRenderFreePicture (dpy, dst);
277}
278
279bool
280rxvt_img::render_pixbuf (GdkPixbuf *pixbuf, int src_x, int src_y, int width, int height, int dst_x, int dst_y)
281{
282 Display *dpy = s->display->dpy;
283
284 if (s->visual->c_class != TrueColor)
285 return false;
286
287 uint32_t red_mask, green_mask, blue_mask, alpha_mask;
288
289 red_mask = (uint32_t)format->direct.redMask << format->direct.red;
290 green_mask = (uint32_t)format->direct.greenMask << format->direct.green;
291 blue_mask = (uint32_t)format->direct.blueMask << format->direct.blue;
292 alpha_mask = (uint32_t)format->direct.alphaMask << format->direct.alpha;
293
294 int width_r = ecb_popcount32 (red_mask);
295 int width_g = ecb_popcount32 (green_mask);
296 int width_b = ecb_popcount32 (blue_mask);
297 int width_a = ecb_popcount32 (alpha_mask);
298
299 if (width_r > 8 || width_g > 8 || width_b > 8 || width_a > 8)
300 return false;
301
302 int sh_r = ecb_ctz32 (red_mask);
303 int sh_g = ecb_ctz32 (green_mask);
304 int sh_b = ecb_ctz32 (blue_mask);
305 int sh_a = ecb_ctz32 (alpha_mask);
306
307 if (width > 32767 || height > 32767)
308 return false;
309
310 XImage *ximage = XCreateImage (dpy, s->visual, format->depth, ZPixmap, 0, 0,
311 width, height, 32, 0);
312 if (!ximage)
313 return false;
314
315 if (height > INT_MAX / ximage->bytes_per_line
316 || !(ximage->data = (char *)malloc (height * ximage->bytes_per_line)))
317 {
318 XDestroyImage (ximage);
319 return false;
320 }
321
322 GC gc = XCreateGC (dpy, pm, 0, 0);
323
324 ximage->byte_order = ecb_big_endian () ? MSBFirst : LSBFirst;
325
326 int rowstride = gdk_pixbuf_get_rowstride (pixbuf);
327 int channels = gdk_pixbuf_get_n_channels (pixbuf);
328 unsigned char *row = gdk_pixbuf_get_pixels (pixbuf) + src_y * rowstride + src_x * channels;
329 char *line = ximage->data;
330
331 for (int y = 0; y < height; y++)
332 {
333 for (int x = 0; x < width; x++)
334 { 741 {
335 unsigned char *pixel = row + x * channels; 742 XRenderFillRectangle (cc.dpy, PictOpSrc, cc.msk, &mask_c, 0, 0, 1, 1);
336 uint32_t value; 743 XRenderComposite (cc.dpy, PictOpAdd, cc.src, cc.msk, cc.dst, 0, 0, 0, 0, 0, 0, w, h);
337 unsigned char r, g, b, a;
338
339 if (channels == 4)
340 {
341 a = pixel[3];
342 r = pixel[0] * a / 0xff;
343 g = pixel[1] * a / 0xff;
344 b = pixel[2] * a / 0xff;
345 }
346 else
347 {
348 a = 0xff;
349 r = pixel[0];
350 g = pixel[1];
351 b = pixel[2];
352 }
353
354 value = ((r >> (8 - width_r)) << sh_r)
355 | ((g >> (8 - width_g)) << sh_g)
356 | ((b >> (8 - width_b)) << sh_b)
357 | ((a >> (8 - width_a)) << sh_a);
358
359 if (ximage->bits_per_pixel == 32)
360 ((uint32_t *)line)[x] = value;
361 else
362 XPutPixel (ximage, x, y, value);
363 } 744 }
364
365 row += rowstride;
366 line += ximage->bytes_per_line;
367 } 745 }
368 746
369 XPutImage (dpy, pm, gc, ximage, 0, 0, dst_x, dst_y, width, height); 747 ::swap (img->ref, ref);
370 XDestroyImage (ximage); 748 ::swap (img->pm , pm );
371 XFreeGC (dpy, gc);
372 749
373 return true; 750 delete img;
751}
752
753void
754rxvt_img::draw (rxvt_img *img, int op, nv mask)
755{
756 unshare ();
757
758 composer cc (img, this);
759
760 if (mask != 1.)
761 cc.mask (rgba (0, 0, 0, float_to_component (mask)));
762
763 XRenderComposite (cc.dpy, op, cc.src, cc.msk, cc.dst, x - img->x, y - img->y, 0, 0, 0, 0, w, h);
374} 764}
375 765
376rxvt_img * 766rxvt_img *
377rxvt_img::clone () 767rxvt_img::clone ()
378{ 768{
380} 770}
381 771
382rxvt_img * 772rxvt_img *
383rxvt_img::reify () 773rxvt_img::reify ()
384{ 774{
385 rxvt_img *img = new rxvt_img (s, format, 0, 0, w, h); 775 if (x == 0 && y == 0 && w == ref->w && h == ref->h)
386 img->alloc (); 776 return clone ();
387 777
388 // todo, if x==0 and y==0 and w==real width we could clone 778 // add an alpha channel if...
389 // but that involves an rtt to find pixmap width. 779 bool alpha = !format->direct.alphaMask // pixmap has none yet
780 && (x || y) // we need one because of non-zero offset
781 && repeat == RepeatNone; // and we have no good pixels to fill with
390 782
391 Display *dpy = s->display->dpy; 783 composer cc (this, new rxvt_img (d, alpha ? find_alpha_format_for (d->dpy, format) : format,
392 XRenderPictureAttributes pa; 784 0, 0, w, h, repeat));
393 pa.repeat = repeat; 785
394 Picture src = XRenderCreatePicture (dpy, pm, format, CPRepeat, &pa); 786 if (repeat == RepeatNone)
395 Picture dst = XRenderCreatePicture (dpy, img->pm, img->format, 0, 0); 787 {
396 788 XRenderColor rc = { 0, 0, 0, 0 };
789 XRenderFillRectangle (cc.dpy, PictOpSrc, cc.dst, &rc, 0, 0, w, h);//TODO: split into four fillrectangles
790 XRenderComposite (cc.dpy, PictOpSrc, cc.src, None, cc.dst, 0, 0, 0, 0, x, y, ref->w, ref->h);
791 }
792 else
397 XRenderComposite (dpy, PictOpSrc, src, None, dst, x, y, 0, 0, 0, 0, w, h); 793 XRenderComposite (cc.dpy, PictOpSrc, cc.src, None, cc.dst, -x, -y, 0, 0, 0, 0, w, h);
398 794
399 XRenderFreePicture (dpy, src); 795 return cc;
400 XRenderFreePicture (dpy, dst); 796}
797
798rxvt_img *
799rxvt_img::sub_rect (int x, int y, int width, int height)
800{
801 rxvt_img *img = clone ();
802
803 img->x -= x;
804 img->y -= y;
805
806 if (w != width || h != height)
807 {
808 img->w = width;
809 img->h = height;
810
811 rxvt_img *img2 = img->reify ();
812 delete img;
813 img = img2;
814 }
401 815
402 return img; 816 return img;
403} 817}
404 818
405rxvt_img * 819rxvt_img *
406rxvt_img::sub_rect (int x, int y, int width, int height) 820rxvt_img::transform (const nv matrix[3][3])
407{ 821{
408 rxvt_img *img = clone (); 822 return transform (mat3x3 (&matrix[0][0]));
409
410 img->x += x;
411 img->y += y;
412 img->w = width;
413 img->h = height;
414
415 return img;
416} 823}
417 824
418rxvt_img * 825rxvt_img *
419rxvt_img::transform (int new_width, int new_height, double matrix[9]) 826rxvt_img::transform (const nv *matrix)
420{ 827{
421 rxvt_img *img = new rxvt_img (s, format, 0, 0, new_width, new_height); 828 mat3x3 m (matrix);
422 img->alloc ();
423 829
424 Display *dpy = s->display->dpy; 830 // calculate new pixel bounding box coordinates
425 XRenderPictureAttributes pa; 831 nv rmin[2], rmax[2];
426 pa.repeat = repeat; 832
427 Picture src = XRenderCreatePicture (dpy, pm, format, CPRepeat, &pa); 833 for (int i = 0; i < 2; ++i)
428 Picture dst = XRenderCreatePicture (dpy, img->pm, img->format, 0, 0); 834 {
835 nv v;
836
837 v = m.apply1 (i, 0+x, 0+y); rmin [i] = rmax [i] = v;
838 v = m.apply1 (i, w+x, 0+y); min_it (rmin [i], v); max_it (rmax [i], v);
839 v = m.apply1 (i, 0+x, h+y); min_it (rmin [i], v); max_it (rmax [i], v);
840 v = m.apply1 (i, w+x, h+y); min_it (rmin [i], v); max_it (rmax [i], v);
841 }
842
843 float sx = rmin [0] - x;
844 float sy = rmin [1] - y;
845
846 // TODO: adjust matrix for subpixel accuracy
847 int nx = floor (rmin [0]);
848 int ny = floor (rmin [1]);
849
850 int new_width = ceil (rmax [0] - rmin [0]);
851 int new_height = ceil (rmax [1] - rmin [1]);
852
853 mat3x3 inv = (mat3x3::translate (-x, -y) * m * mat3x3::translate (x, y)).inverse ();
854
855 composer cc (this, new rxvt_img (d, format, nx, ny, new_width, new_height, repeat));
429 856
430 XTransform xfrm; 857 XTransform xfrm;
431 858
432 for (int i = 0; i < 3; ++i) 859 for (int i = 0; i < 3; ++i)
433 for (int j = 0; j < 3; ++j) 860 for (int j = 0; j < 3; ++j)
434 xfrm.matrix [i][j] = XDoubleToFixed (matrix [i * 3 + j]); 861 xfrm.matrix [i][j] = XDoubleToFixed (inv [i][j]);
435 862
436 xfrm.matrix [0][2] += XDoubleToFixed (x);//TODO
437 xfrm.matrix [0][3] += XDoubleToFixed (y);
438
439 XRenderSetPictureFilter (dpy, src, "good", 0, 0); 863 XRenderSetPictureFilter (cc.dpy, cc.src, "good", 0, 0);
440 XRenderSetPictureTransform (dpy, src, &xfrm); 864 XRenderSetPictureTransform (cc.dpy, cc.src, &xfrm);
441 XRenderComposite (dpy, PictOpSrc, src, None, dst, 0, 0, 0, 0, 0, 0, new_width, new_height); 865 XRenderComposite (cc.dpy, PictOpSrc, cc.src, None, cc.dst, sx, sy, 0, 0, 0, 0, new_width, new_height);
442 866
443 XRenderFreePicture (dpy, src); 867 return cc;
444 XRenderFreePicture (dpy, dst); 868}
869
870rxvt_img *
871rxvt_img::scale (int new_width, int new_height)
872{
873 if (w == new_width && h == new_height)
874 return clone ();
875
876 int old_repeat_mode = repeat;
877 repeat = RepeatPad; // not right, but xrender can't properly scale it seems
878
879 rxvt_img *img = transform (mat3x3::scale (new_width / (nv)w, new_height / (nv)h));
880
881 repeat = old_repeat_mode;
882 img->repeat = repeat;
445 883
446 return img; 884 return img;
447} 885}
448 886
449rxvt_img * 887rxvt_img *
450rxvt_img::scale (int new_width, int new_height) 888rxvt_img::rotate (int cx, int cy, nv phi)
451{ 889{
452 double matrix[9] = { 890 move (-cx, -cy);
453 w / (double)new_width, 0, 0, 891 rxvt_img *img = transform (mat3x3::rotate (phi));
454 0, h / (double)new_height, 0, 892 move ( cx, cy);
455 0, 0, 1 893 img->move (cx, cy);
456 };
457 894
458 return transform (new_width, new_height, matrix); 895 return img;
459} 896}
460 897
461rxvt_img * 898rxvt_img *
462rxvt_img::rotate (int new_width, int new_height, int x, int y, double phi)
463{
464 double s = sin (phi);
465 double c = cos (phi);
466
467 double matrix[9] = {
468 c, -s, -c * x + s * y + x,
469 s, c, -s * x - c * y + y,
470 0, 0, 1
471 };
472
473 return transform (new_width, new_height, matrix);
474}
475
476rxvt_img *
477rxvt_img::convert_to (XRenderPictFormat *new_format, const rxvt_color &bg) 899rxvt_img::convert_format (XRenderPictFormat *new_format, const rgba &bg)
478{ 900{
479 if (new_format == format) 901 if (new_format == format)
480 return clone (); 902 return clone ();
481 903
482 rxvt_img *img = new rxvt_img (s, new_format, x, y, w, h); 904 composer cc (this, new rxvt_img (d, new_format, x, y, w, h, repeat));
483 img->alloc ();
484 905
485 Display *dpy = s->display->dpy;
486 Picture src = XRenderCreatePicture (dpy, pm, format, 0, 0);
487 Picture dst = XRenderCreatePicture (dpy, img->pm, new_format, 0, 0);
488 int op = PictOpSrc; 906 int op = PictOpSrc;
489 907
490 if (format->direct.alphaMask && !new_format->direct.alphaMask) 908 if (format->direct.alphaMask && !new_format->direct.alphaMask)
491 { 909 {
492 // does it have to be that complicated 910 // does it have to be that complicated
493 rgba c;
494 bg.get (c);
495
496 XRenderColor rc = { c.r, c.g, c.b, 0xffff }; 911 XRenderColor rc = { bg.r, bg.g, bg.b, bg.a };
497 XRenderFillRectangle (dpy, PictOpSrc, dst, &rc, 0, 0, w, h); 912 XRenderFillRectangle (cc.dpy, PictOpSrc, cc.dst, &rc, 0, 0, w, h);
498 913
499 op = PictOpOver; 914 op = PictOpOver;
500 } 915 }
501 916
502 XRenderComposite (dpy, op, src, None, dst, 0, 0, 0, 0, 0, 0, w, h); 917 XRenderComposite (cc.dpy, op, cc.src, None, cc.dst, 0, 0, 0, 0, 0, 0, w, h);
503 918
504 XRenderFreePicture (dpy, src); 919 return cc;
505 XRenderFreePicture (dpy, dst); 920}
921
922rxvt_img *
923rxvt_img::tint (const rgba &c)
924{
925 composer cc (this);
926 cc.mask (true);
927 cc.fill (c);
928
929 XRenderComposite (cc.dpy, PictOpSrc, cc.src, cc.msk, cc.dst, 0, 0, 0, 0, 0, 0, w, h);
930
931 return cc;
932}
933
934rxvt_img *
935rxvt_img::shade (nv factor, rgba c)
936{
937 clamp_it (factor, -1., 1.);
938 factor++;
939
940 if (factor > 1)
941 {
942 c.r = c.r * (2 - factor);
943 c.g = c.g * (2 - factor);
944 c.b = c.b * (2 - factor);
945 }
946 else
947 {
948 c.r = c.r * factor;
949 c.g = c.g * factor;
950 c.b = c.b * factor;
951 }
952
953 rxvt_img *img = this->tint (c);
954
955 if (factor > 1)
956 {
957 c.a = 0xffff;
958 c.r =
959 c.g =
960 c.b = 0xffff * (factor - 1);
961
962 img->brightness (c.r, c.g, c.b, c.a);
963 }
506 964
507 return img; 965 return img;
508} 966}
509 967
510rxvt_img * 968rxvt_img *
511rxvt_img::blend (rxvt_img *img, double factor) 969rxvt_img::filter (const char *name, int nparams, nv *params)
512{ 970{
513 rxvt_img *img2 = clone (); 971 composer cc (this);
514 Display *dpy = s->display->dpy;
515 Picture src = XRenderCreatePicture (dpy, img->pm, img->format, 0, 0);
516 Picture dst = XRenderCreatePicture (dpy, img2->pm, img2->format, 0, 0);
517 Picture mask = create_xrender_mask (dpy, img->pm, False);
518 972
519 XRenderColor mask_c; 973 XFixed *xparams = rxvt_temp_buf<XFixed> (nparams);
520 974
521 mask_c.alpha = float_to_component (factor); 975 for (int i = 0; i < nparams; ++i)
522 mask_c.red = 976 xparams [i] = XDoubleToFixed (params [i]);
523 mask_c.green =
524 mask_c.blue = 0;
525 XRenderFillRectangle (dpy, PictOpSrc, mask, &mask_c, 0, 0, 1, 1);
526 977
978 XRenderSetPictureFilter (cc.dpy, cc.src, name, xparams, nparams);
979
527 XRenderComposite (dpy, PictOpOver, src, mask, dst, 0, 0, 0, 0, 0, 0, w, h); 980 XRenderComposite (cc.dpy, PictOpSrc, cc.src, 0, cc.dst, 0, 0, 0, 0, 0, 0, w, h);
528 981
529 XRenderFreePicture (dpy, src);
530 XRenderFreePicture (dpy, dst);
531 XRenderFreePicture (dpy, mask);
532
533 return img2; 982 return cc;
534} 983}
535 984
536#endif 985#endif
537 986

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines