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.94 by root, Fri Jun 15 18:10:40 2012 UTC

1#include <string.h>
1#include <math.h> 2#include <math.h>
2#include "../config.h" 3#include "../config.h"
3#include "rxvt.h" 4#include "rxvt.h"
4 5
5#if HAVE_IMG 6#if HAVE_IMG
6 7
8typedef rxvt_img::nv nv;
9
10namespace
11{
12
13 struct mat3x3
14 {
15 nv v[3][3];
16
17 mat3x3 ()
18 {
19 }
20
21 mat3x3 (nv matrix[3][3])
22 {
23 memcpy (v, matrix, sizeof (v));
24 }
25
26 mat3x3 (nv v11, nv v12, nv v13, nv v21, nv v22, nv v23, nv v31, nv v32, nv v33)
27 {
28 v[0][0] = v11; v[0][1] = v12; v[0][2] = v13;
29 v[1][0] = v21; v[1][1] = v22; v[1][2] = v23;
30 v[2][0] = v31; v[2][1] = v32; v[2][2] = v33;
31 }
32
33 mat3x3 invert ();
34
35 nv *operator [](int i) { return &v[i][0]; }
36 const nv *operator [](int i) const { return &v[i][0]; }
37
38 // quite inefficient, hopefully gcc pulls the w calc out of any loops
39 nv apply1 (int i, nv x, nv y)
40 {
41 mat3x3 &m = *this;
42
43 nv v = m[i][0] * x + m[i][1] * y + m[i][2];
44 nv w = m[2][0] * x + m[2][1] * y + m[2][2];
45
46 return v * (1. / w);
47 }
48
49 static mat3x3 translate (nv x, nv y);
50 };
51
52 mat3x3
53 mat3x3::invert ()
54 {
55 mat3x3 &m = *this;
56 mat3x3 inv;
57
58 nv s0 = m[2][2] * m[1][1] - m[2][1] * m[1][2];
59 nv s1 = m[2][1] * m[0][2] - m[2][2] * m[0][1];
60 nv s2 = m[1][2] * m[0][1] - m[1][1] * m[0][2];
61
62 nv invdet = 1. / (m[0][0] * s0 + m[1][0] * s1 + m[2][0] * s2);
63
64 inv[0][0] = invdet * s0;
65 inv[0][1] = invdet * s1;
66 inv[0][2] = invdet * s2;
67
68 inv[1][0] = invdet * (m[2][0] * m[1][2] - m[2][2] * m[1][0]);
69 inv[1][1] = invdet * (m[2][2] * m[0][0] - m[2][0] * m[0][2]);
70 inv[1][2] = invdet * (m[1][0] * m[0][2] - m[1][2] * m[0][0]);
71
72 inv[2][0] = invdet * (m[2][1] * m[1][0] - m[2][0] * m[1][1]);
73 inv[2][1] = invdet * (m[2][0] * m[0][1] - m[2][1] * m[0][0]);
74 inv[2][2] = invdet * (m[1][1] * m[0][0] - m[1][0] * m[0][1]);
75
76 return inv;
77 }
78
79 static mat3x3
80 operator *(const mat3x3 &a, const mat3x3 &b)
81 {
82 mat3x3 r;
83
84 for (int i = 0; i < 3; ++i)
85 for (int j = 0; j < 3; ++j)
86 r[i][j] = a[i][0] * b[0][j]
87 + a[i][1] * b[1][j]
88 + a[i][2] * b[2][j];
89
90 return r;
91 }
92
93 mat3x3
94 mat3x3::translate (nv x, nv y)
95 {
96 return mat3x3 (
97 1, 0, x,
98 0, 1, y,
99 0, 0, 1
100 );
101 }
102
103}
104
105#if 0
106struct pict
107{
108 Display *dpy;
109 Picture pic;
110
111 operator Picture () const
112 {
113 return pic;
114 }
115
116 pict ()
117 : pic (0)
118 {
119 }
120
121 pict (rxvt_img *img, XRenderPictFormat *format = 0)
122 : dpy (img->s->display->dpy)
123 {
124 XRenderPictureAttributes pa;
125 pa.repeat = img->repeat;
126 pic = XRenderCreatePicture (dpy, img->pm, format ? format : img->format, CPRepeat, &pa);
127 }
128
129 ~pict ()
130 {
131 if (pic)
132 XRenderFreePicture (dpy, pic);
133 }
134};
135#endif
136
137static XRenderPictFormat *
138find_alpha_format_for (Display *dpy, XRenderPictFormat *format)
139{
140 if (format->direct.alphaMask)
141 return format; // already has alpha
142
143 // try to find a suitable alpha format, one bit alpha is enough for our purposes
144 if (format->type == PictTypeDirect)
145 for (int n = 0; XRenderPictFormat *f = XRenderFindFormat (dpy, 0, 0, n); ++n)
146 if (f->direct.alphaMask
147 && f->type == PictTypeDirect
148 && ecb_popcount32 (f->direct.redMask ) >= ecb_popcount32 (format->direct.redMask )
149 && ecb_popcount32 (f->direct.greenMask) >= ecb_popcount32 (format->direct.greenMask)
150 && ecb_popcount32 (f->direct.blueMask ) >= ecb_popcount32 (format->direct.blueMask ))
151 return f;
152
153 // should be a very good fallback
154 return XRenderFindStandardFormat (dpy, PictStandardARGB32);
155}
156
7rxvt_img::rxvt_img (rxvt_screen *screen, XRenderPictFormat *format, int x, int y, int width, int height) 157rxvt_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), 158: s(screen), x(x), y(y), w(width), h(height), format(format), repeat(repeat),
9 pm(0), refcnt(0) 159 pm(0), ref(0)
10{ 160{
11} 161}
12 162
13rxvt_img::rxvt_img (const rxvt_img &img) 163rxvt_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) 164: s(img.s), 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{ 165{
16 if (refcnt)
17 ++*refcnt; 166 ++ref->cnt;
18} 167}
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 168
27rxvt_img * 169rxvt_img *
28rxvt_img::new_from_root (rxvt_screen *s) 170rxvt_img::new_from_root (rxvt_screen *s)
29{ 171{
30 Display *dpy = s->display->dpy; 172 Display *dpy = s->display->dpy;
51 root_pm_w, 193 root_pm_w,
52 root_pm_h 194 root_pm_h
53 ); 195 );
54 196
55 img->pm = root_pixmap; 197 img->pm = root_pixmap;
198 img->ref = new pixref (root_pm_w, root_pm_h);
199 img->ref->ours = false;
200
201 return img;
202}
203
204# if HAVE_PIXBUF
205
206rxvt_img *
207rxvt_img::new_from_pixbuf (rxvt_screen *s, GdkPixbuf *pb)
208{
209 Display *dpy = s->display->dpy;
210
211 int width = gdk_pixbuf_get_width (pb);
212 int height = gdk_pixbuf_get_height (pb);
213
214 if (width > 32767 || height > 32767) // well, we *could* upload in chunks
215 rxvt_fatal ("rxvt_img::new_from_pixbuf: image too big (maximum size 32768x32768).\n");
216
217 // since we require rgb24/argb32 formats from xrender we assume
218 // that both 24 and 32 bpp MUST be supported by any screen that supports xrender
219
220 int byte_order = ecb_big_endian () ? MSBFirst : LSBFirst;
221
222 XImage xi;
223
224 xi.width = width;
225 xi.height = height;
226 xi.xoffset = 0;
227 xi.format = ZPixmap;
228 xi.byte_order = ImageByteOrder (dpy);
229 xi.bitmap_unit = 0; //XY only, unused
230 xi.bitmap_bit_order = 0; //XY only, unused
231 xi.bitmap_pad = BitmapPad (dpy);
232 xi.depth = 32;
233 xi.bytes_per_line = 0;
234 xi.bits_per_pixel = 32; //Z only
235 xi.red_mask = 0x00000000; //Z only, unused
236 xi.green_mask = 0x00000000; //Z only, unused
237 xi.blue_mask = 0x00000000; //Z only, unused
238 xi.obdata = 0; // probably unused
239
240 bool byte_order_mismatch = byte_order != xi.byte_order;
241
242 if (!XInitImage (&xi))
243 rxvt_fatal ("unable to initialise ximage, please report.\n");
244
245 if (height > INT_MAX / xi.bytes_per_line)
246 rxvt_fatal ("rxvt_img::new_from_pixbuf: image too big for Xlib.\n");
247
248 xi.data = (char *)rxvt_malloc (height * xi.bytes_per_line);
249
250 int rowstride = gdk_pixbuf_get_rowstride (pb);
251 bool pb_has_alpha = gdk_pixbuf_get_has_alpha (pb);
252 unsigned char *row = gdk_pixbuf_get_pixels (pb);
253
254 char *line = xi.data;
255
256 for (int y = 0; y < height; y++)
257 {
258 unsigned char *src = row;
259 uint32_t *dst = (uint32_t *)line;
260
261 if (!pb_has_alpha)
262 for (int x = 0; x < width; x++)
263 {
264 uint8_t r = *src++;
265 uint8_t g = *src++;
266 uint8_t b = *src++;
267
268 uint32_t v = (255 << 24) | (r << 16) | (g << 8) | b;
269
270 if (ecb_big_endian () ? !byte_order_mismatch : byte_order_mismatch)
271 v = ecb_bswap32 (v);
272
273 *dst++ = v;
274 }
275 else
276 for (int x = 0; x < width; x++)
277 {
278 uint32_t v = *(uint32_t *)src; src += 4;
279
280 if (ecb_big_endian ())
281 v = ecb_bswap32 (v);
282
283 v = ecb_rotl32 (v, 8); // abgr to bgra
284
285 if (!byte_order_mismatch)
286 v = ecb_bswap32 (v);
287
288 *dst++ = v;
289 }
290
291 row += rowstride;
292 line += xi.bytes_per_line;
293 }
294
295 rxvt_img *img = new rxvt_img (s, XRenderFindStandardFormat (dpy, PictStandardARGB32), 0, 0, width, height);
296 img->alloc ();
297
298 GC gc = XCreateGC (dpy, img->pm, 0, 0);
299 XPutImage (dpy, img->pm, gc, &xi, 0, 0, 0, 0, width, height);
300 XFreeGC (dpy, gc);
301
302 free (xi.data);
56 303
57 return img; 304 return img;
58} 305}
59 306
60rxvt_img * 307rxvt_img *
64 GdkPixbuf *pb = gdk_pixbuf_new_from_file (filename, &err); 311 GdkPixbuf *pb = gdk_pixbuf_new_from_file (filename, &err);
65 312
66 if (!pb) 313 if (!pb)
67 rxvt_fatal ("rxvt_img::new_from_file: %s\n", err->message); 314 rxvt_fatal ("rxvt_img::new_from_file: %s\n", err->message);
68 315
69 rxvt_img *img = new rxvt_img ( 316 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 317
80 g_object_unref (pb); 318 g_object_unref (pb);
81 319
82 return img; 320 return img;
83} 321}
322
323# endif
84 324
85void 325void
86rxvt_img::destroy () 326rxvt_img::destroy ()
87{ 327{
88 if (!refcnt || --*refcnt) 328 if (--ref->cnt)
89 return; 329 return;
90 330
91 if (pm) 331 if (pm && ref->ours)
92 XFreePixmap (s->display->dpy, pm); 332 XFreePixmap (s->display->dpy, pm);
93 333
94 delete refcnt; 334 delete ref;
95} 335}
96 336
97rxvt_img::~rxvt_img () 337rxvt_img::~rxvt_img ()
98{ 338{
99 destroy (); 339 destroy ();
101 341
102void 342void
103rxvt_img::alloc () 343rxvt_img::alloc ()
104{ 344{
105 pm = XCreatePixmap (s->display->dpy, s->display->root, w, h, format->depth); 345 pm = XCreatePixmap (s->display->dpy, s->display->root, w, h, format->depth);
106 refcnt = new int (1); 346 ref = new pixref (w, h);
347}
348
349Picture
350rxvt_img::picture ()
351{
352 Display *dpy = s->display->dpy;
353
354 XRenderPictureAttributes pa;
355 pa.repeat = repeat;
356 Picture pic = XRenderCreatePicture (dpy, pm, format, CPRepeat, &pa);
357
358 return pic;
107} 359}
108 360
109void 361void
110rxvt_img::unshare () 362rxvt_img::unshare ()
111{ 363{
112 if (refcnt && *refcnt == 1) 364 if (ref->cnt == 1 && ref->ours)
113 return; 365 return;
114 366
115 Pixmap pm2 = XCreatePixmap (s->display->dpy, s->display->root, w, h, format->depth); 367 Pixmap pm2 = XCreatePixmap (s->display->dpy, s->display->root, ref->w, ref->h, format->depth);
116 GC gc = XCreateGC (s->display->dpy, pm, 0, 0); 368 GC gc = XCreateGC (s->display->dpy, pm, 0, 0);
117 XCopyArea (s->display->dpy, pm, pm2, gc, 0, 0, w, h, 0, 0); 369 XCopyArea (s->display->dpy, pm, pm2, gc, 0, 0, ref->w, ref->h, 0, 0);
118 XFreeGC (s->display->dpy, gc); 370 XFreeGC (s->display->dpy, gc);
119 371
120 destroy (); 372 destroy ();
121 373
122 pm = pm2; 374 pm = pm2;
123 refcnt = new int (1); 375 ref = new pixref (ref->w, ref->h);
124} 376}
125 377
126void 378void
127rxvt_img::fill (const rxvt_color &c) 379rxvt_img::fill (const rgba &c)
128{ 380{
129 XGCValues gcv; 381 XRenderColor rc = { c.r, c.g, c.b, c.a };
130 gcv.foreground = c; 382
131 GC gc = XCreateGC (s->display->dpy, pm, GCForeground, &gcv); 383 Display *dpy = s->display->dpy;
132 XFillRectangle (s->display->dpy, pm, gc, 0, 0, w, h); 384 Picture src = picture ();
133 XFreeGC (s->display->dpy, gc); 385 XRenderFillRectangle (dpy, PictOpSrc, src, &rc, 0, 0, w, h);
386 XRenderFreePicture (dpy, src);
387}
388
389void
390rxvt_img::add_alpha ()
391{
392 if (format->direct.alphaMask)
393 return;
394
395 Display *dpy = s->display->dpy;
396
397 rxvt_img *img = new rxvt_img (s, find_alpha_format_for (dpy, format), x, y, w, h, repeat);
398 img->alloc ();
399
400 Picture src = picture ();
401 Picture dst = XRenderCreatePicture (dpy, img->pm, img->format, 0, 0);
402
403 XRenderComposite (dpy, PictOpSrc, src, None, dst, 0, 0, 0, 0, 0, 0, w, h);
404
405 XRenderFreePicture (dpy, src);
406 XRenderFreePicture (dpy, dst);
407
408 ::swap (img->ref, ref);
409 ::swap (img->pm , pm );
410
411 delete img;
134} 412}
135 413
136static void 414static void
137get_gaussian_kernel (int radius, int width, double *kernel, XFixed *params) 415get_gaussian_kernel (int radius, int width, nv *kernel, XFixed *params)
138{ 416{
139 double sigma = radius / 2.0; 417 nv sigma = radius / 2.0;
140 double scale = sqrt (2.0 * M_PI) * sigma; 418 nv scale = sqrt (2.0 * M_PI) * sigma;
141 double sum = 0.0; 419 nv sum = 0.0;
142 420
143 for (int i = 0; i < width; i++) 421 for (int i = 0; i < width; i++)
144 { 422 {
145 double x = i - width / 2; 423 nv x = i - width / 2;
146 kernel[i] = exp (-(x * x) / (2.0 * sigma * sigma)) / scale; 424 kernel[i] = exp (-(x * x) / (2.0 * sigma * sigma)) / scale;
147 sum += kernel[i]; 425 sum += kernel[i];
148 } 426 }
149 427
150 params[0] = XDoubleToFixed (width); 428 params[0] = XDoubleToFixed (width);
160 if (!(s->display->flags & DISPLAY_HAS_RENDER_CONV)) 438 if (!(s->display->flags & DISPLAY_HAS_RENDER_CONV))
161 return clone (); 439 return clone ();
162 440
163 Display *dpy = s->display->dpy; 441 Display *dpy = s->display->dpy;
164 int size = max (rh, rv) * 2 + 1; 442 int size = max (rh, rv) * 2 + 1;
165 double *kernel = (double *)malloc (size * sizeof (double)); 443 nv *kernel = (nv *)malloc (size * sizeof (nv));
166 XFixed *params = (XFixed *)malloc ((size + 2) * sizeof (XFixed)); 444 XFixed *params = (XFixed *)malloc ((size + 2) * sizeof (XFixed));
167 rxvt_img *img = new rxvt_img (s, format, x, y, w, h); 445 rxvt_img *img = new rxvt_img (s, format, x, y, w, h, repeat);
168 img->alloc (); 446 img->alloc ();
169 447
170 XRenderPictureAttributes pa; 448 XRenderPictureAttributes pa;
171
172 pa.repeat = RepeatPad; 449 pa.repeat = RepeatPad;
173 Picture src = XRenderCreatePicture (dpy, pm , format, CPRepeat, &pa); 450 Picture src = XRenderCreatePicture (dpy, pm, format, CPRepeat, &pa);
174 Picture dst = XRenderCreatePicture (dpy, img->pm, format, CPRepeat, &pa); 451 Picture dst = XRenderCreatePicture (dpy, img->pm, format, 0, 0);
175 452
176 Pixmap tmp_pm = XCreatePixmap (dpy, pm, w, h, format->depth); 453 Pixmap tmp_pm = XCreatePixmap (dpy, pm, w, h, format->depth);
177 Picture tmp = XRenderCreatePicture (dpy, tmp_pm , format, CPRepeat, &pa); 454 Picture tmp = XRenderCreatePicture (dpy, tmp_pm , format, CPRepeat, &pa);
178 XFreePixmap (dpy, tmp_pm); 455 XFreePixmap (dpy, tmp_pm);
179 456
195 472
196 size = rv * 2 + 1; 473 size = rv * 2 + 1;
197 get_gaussian_kernel (rv, size, kernel, params); 474 get_gaussian_kernel (rv, size, kernel, params);
198 ::swap (params[0], params[1]); 475 ::swap (params[0], params[1]);
199 476
200 XRenderSetPictureFilter (dpy, src, FilterConvolution, params, size+2); 477 XRenderSetPictureFilter (dpy, tmp, FilterConvolution, params, size+2);
201 XRenderComposite (dpy, 478 XRenderComposite (dpy,
202 PictOpSrc, 479 PictOpSrc,
203 tmp, 480 tmp,
204 None, 481 None,
205 dst, 482 dst,
209 w, h); 486 w, h);
210 } 487 }
211 488
212 free (kernel); 489 free (kernel);
213 free (params); 490 free (params);
491
214 XRenderFreePicture (dpy, src); 492 XRenderFreePicture (dpy, src);
215 XRenderFreePicture (dpy, dst); 493 XRenderFreePicture (dpy, dst);
216 XRenderFreePicture (dpy, tmp); 494 XRenderFreePicture (dpy, tmp);
217 495
218 return img; 496 return img;
219} 497}
220 498
221static Picture 499static Picture
222create_xrender_mask (Display *dpy, Drawable drawable, Bool argb) 500create_xrender_mask (Display *dpy, Drawable drawable, Bool argb, Bool component_alpha)
223{ 501{
224 Pixmap pixmap = XCreatePixmap (dpy, drawable, 1, 1, argb ? 32 : 8); 502 Pixmap pixmap = XCreatePixmap (dpy, drawable, 1, 1, argb ? 32 : 8);
225 503
226 XRenderPictFormat *format = XRenderFindStandardFormat (dpy, argb ? PictStandardARGB32 : PictStandardA8); 504 XRenderPictFormat *format = XRenderFindStandardFormat (dpy, argb ? PictStandardARGB32 : PictStandardA8);
227 XRenderPictureAttributes pa; 505 XRenderPictureAttributes pa;
228 pa.repeat = True; 506 pa.repeat = RepeatNormal;
507 pa.component_alpha = component_alpha;
229 Picture mask = XRenderCreatePicture (dpy, pixmap, format, CPRepeat, &pa); 508 Picture mask = XRenderCreatePicture (dpy, pixmap, format, CPRepeat | CPComponentAlpha, &pa);
230 509
231 XFreePixmap (dpy, pixmap); 510 XFreePixmap (dpy, pixmap);
232 511
233 return mask; 512 return mask;
234} 513}
235 514
515static void
516extract (int32_t cl0, int32_t cl1, int32_t &c, unsigned short &xc)
517{
518 int32_t x = clamp (c, cl0, cl1);
519 c -= x;
520 xc = x;
521}
522
523static bool
524extract (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)
525{
526 extract (cl0, cl1, r, xr);
527 extract (cl0, cl1, g, xg);
528 extract (cl0, cl1, b, xb);
529 extract (cl0, cl1, a, xa);
530
531 return xr | xg | xb | xa;
532}
533
236void 534void
237rxvt_img::brightness (unsigned short r, unsigned short g, unsigned short b, unsigned short a) 535rxvt_img::brightness (int32_t r, int32_t g, int32_t b, int32_t a)
238{ 536{
537 unshare ();
538
239 Display *dpy = s->display->dpy; 539 Display *dpy = s->display->dpy;
240 Picture src = create_xrender_mask (dpy, pm, True);
241 Picture dst = XRenderCreatePicture (dpy, pm, format, 0, 0); 540 Picture dst = XRenderCreatePicture (dpy, pm, format, 0, 0);
242 541
542 // loop should not be needed for brightness, as only -1..1 makes sense
543 //while (r | g | b | a)
544 {
545 unsigned short xr, xg, xb, xa;
243 XRenderColor mask_c; 546 XRenderColor mask_c;
244 mask_c.red = r; 547
245 mask_c.green = g; 548 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; 549 XRenderFillRectangle (dpy, PictOpAdd, dst, &mask_c, 0, 0, w, h);
247 mask_c.alpha = a; 550
551 if (extract (-65535, 0, r, g, b, a, mask_c.red, mask_c.green, mask_c.blue, mask_c.alpha))
552 {
553 XRenderColor mask_w = { 65535, 65535, 65535, 65535 };
554 XRenderFillRectangle (dpy, PictOpDifference, dst, &mask_w, 0, 0, w, h);
555 mask_c.red = -mask_c.red; //TODO: verify that doing clamp, assign, and negation does the right thing
556 mask_c.green = -mask_c.green;
557 mask_c.blue = -mask_c.blue;
558 mask_c.alpha = -mask_c.alpha;
559 XRenderFillRectangle (dpy, PictOpAdd, dst, &mask_c, 0, 0, w, h);
560 XRenderFillRectangle (dpy, PictOpDifference, dst, &mask_w, 0, 0, w, h);
561 }
562 }
563
564 XRenderFreePicture (dpy, dst);
565}
566
567void
568rxvt_img::contrast (int32_t r, int32_t g, int32_t b, int32_t a)
569{
570 if (r < 0 || g < 0 || b < 0 || a < 0)
571 rxvt_fatal ("rxvt_img::contrast does not support negative values.\n");
572
573 rxvt_img *img = new rxvt_img (s, format, x, y, w, h, repeat);
574 img->alloc ();
575 img->fill (rgba (0, 0, 0, 0));
576
577 // premultiply (yeah, these are not exact, sue me or fix it)
578 r = (r * (a >> 8)) >> 8;
579 g = (g * (a >> 8)) >> 8;
580 b = (b * (a >> 8)) >> 8;
581
582 Display *dpy = s->display->dpy;
583
584 Picture src = picture ();
585 Picture dst = XRenderCreatePicture (dpy, img->pm, format, 0, 0);
586 Picture mul = create_xrender_mask (dpy, pm, True, True);
587
588 //TODO: this operator does not yet implement some useful contrast
589 while (r | g | b | a)
590 {
591 unsigned short xr, xg, xb, xa;
592 XRenderColor mask_c;
593
594 if (extract (0, 65535, r, g, b, a, mask_c.red, mask_c.green, mask_c.blue, mask_c.alpha))
595 {
596 XRenderFillRectangle (dpy, PictOpSrc, mul, &mask_c, 0, 0, 1, 1);
597 XRenderComposite (dpy, PictOpAdd, src, mul, dst, 0, 0, 0, 0, 0, 0, w, h);
598 }
599 }
600
601 XRenderFreePicture (dpy, mul);
602 XRenderFreePicture (dpy, dst);
603 XRenderFreePicture (dpy, src);
604
605 ::swap (img->ref, ref);
606 ::swap (img->pm , pm );
607
608 delete img;
609}
610
611void
612rxvt_img::draw (rxvt_img *img, int op, nv mask)
613{
614 unshare ();
615
616 Display *dpy = s->display->dpy;
617 Picture src = img->picture ();
618 Picture dst = picture ();
619 Picture mask_p = 0;
620
621 if (mask != 1.)
622 {
623 mask_p = create_xrender_mask (dpy, img->pm, False, False);
624 XRenderColor mask_c = { 0, 0, 0, float_to_component (mask) };
248 XRenderFillRectangle (dpy, PictOpSrc, src, &mask_c, 0, 0, 1, 1); 625 XRenderFillRectangle (dpy, PictOpSrc, mask, &mask_c, 0, 0, 1, 1);
626 }
249 627
250 XRenderComposite (dpy, PictOpAdd, src, None, dst, 0, 0, 0, 0, 0, 0, w, h); 628 XRenderComposite (dpy, op, src, mask_p, dst, x - img->x, y - img->y, 0, 0, 0, 0, w, h);
251 629
252 XRenderFreePicture (dpy, src); 630 XRenderFreePicture (dpy, src);
253 XRenderFreePicture (dpy, dst); 631 XRenderFreePicture (dpy, dst);
254}
255 632
256void 633 if (mask_p)
257rxvt_img::contrast (unsigned short r, unsigned short g, unsigned short b, unsigned short a) 634 XRenderFreePicture (dpy, mask_p);
258{ 635}
259 if (!(s->display->flags & DISPLAY_HAS_RENDER_MUL))
260 return;
261 636
637rxvt_img *
638rxvt_img::clone ()
639{
640 return new rxvt_img (*this);
641}
642
643rxvt_img *
644rxvt_img::reify ()
645{
646 if (x == 0 && y == 0 && w == ref->w && h == ref->h)
647 return clone ();
648
262 Display *dpy = s->display->dpy; 649 Display *dpy = s->display->dpy;
263 Picture src = create_xrender_mask (dpy, pm, True); 650
651 // add an alpha channel if...
652 bool alpha = !format->direct.alphaMask // pixmap has none yet
653 && (x || y) // we need one because of non-zero offset
654 && repeat == RepeatNone; // and we have no good pixels to fill with
655
656 rxvt_img *img = new rxvt_img (s, alpha ? find_alpha_format_for (dpy, format) : format, 0, 0, w, h, repeat);
657 img->alloc ();
658
659 Picture src = picture ();
264 Picture dst = XRenderCreatePicture (dpy, pm, format, 0, 0); 660 Picture dst = XRenderCreatePicture (dpy, img->pm, img->format, 0, 0);
265 661
266 XRenderColor mask_c; 662 if (alpha)
267 mask_c.red = r; 663 {
268 mask_c.green = g; 664 XRenderColor rc = { 0, 0, 0, 0 };
269 mask_c.blue = b; 665 XRenderFillRectangle (dpy, PictOpSrc, dst, &rc, 0, 0, w, h);//TODO: split into four fillrectangles
270 mask_c.alpha = a; 666 XRenderComposite (dpy, PictOpSrc, src, None, dst, 0, 0, 0, 0, x, y, ref->w, ref->h);
271 XRenderFillRectangle (dpy, PictOpSrc, src, &mask_c, 0, 0, 1, 1); 667 }
272 668 else
273 XRenderComposite (dpy, PictOpMultiply, src, None, dst, 0, 0, 0, 0, 0, 0, w, h); 669 XRenderComposite (dpy, PictOpSrc, src, None, dst, -x, -y, 0, 0, 0, 0, w, h);
274 670
275 XRenderFreePicture (dpy, src); 671 XRenderFreePicture (dpy, src);
276 XRenderFreePicture (dpy, dst); 672 XRenderFreePicture (dpy, dst);
277}
278 673
279bool 674 return img;
280rxvt_img::render_pixbuf (GdkPixbuf *pixbuf, int src_x, int src_y, int width, int height, int dst_x, int dst_y) 675}
281{
282 Display *dpy = s->display->dpy;
283 676
284 if (s->visual->c_class != TrueColor) 677rxvt_img *
285 return false; 678rxvt_img::sub_rect (int x, int y, int width, int height)
679{
680 rxvt_img *img = clone ();
286 681
287 uint32_t red_mask, green_mask, blue_mask, alpha_mask; 682 img->x -= x;
683 img->y -= y;
288 684
289 red_mask = (uint32_t)format->direct.redMask << format->direct.red; 685 if (w != width || h != height)
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 } 686 {
687 img->w = width;
688 img->h = height;
321 689
322 GC gc = XCreateGC (dpy, pm, 0, 0); 690 rxvt_img *img2 = img->reify ();
323 691 delete img;
324 ximage->byte_order = ecb_big_endian () ? MSBFirst : LSBFirst; 692 img = img2;
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 { 693 }
694
695 return img;
696}
697
698rxvt_img *
699rxvt_img::transform (nv matrix[3][3])
700{
701 // calculate new pixel bounding box coordinates
702 nv r[2], rmin[2], rmax[2];
703
704 mat3x3 m (matrix);
705
333 for (int x = 0; x < width; x++) 706 for (int i = 0; i < 2; ++i)
334 {
335 unsigned char *pixel = row + x * channels;
336 uint32_t value;
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 }
364
365 row += rowstride;
366 line += ximage->bytes_per_line;
367 } 707 {
708 nv v;
368 709
369 XPutImage (dpy, pm, gc, ximage, 0, 0, dst_x, dst_y, width, height); 710 v = m.apply1 (i, 0+x, 0+y); rmin [i] = rmax [i] = v; r [i] = v;
370 XDestroyImage (ximage); 711 v = m.apply1 (i, w+x, 0+y); min_it (rmin [i], v); max_it (rmax [i], v);
371 XFreeGC (dpy, gc); 712 v = m.apply1 (i, 0+x, h+y); min_it (rmin [i], v); max_it (rmax [i], v);
713 v = m.apply1 (i, w+x, h+y); min_it (rmin [i], v); max_it (rmax [i], v);
714 }
372 715
373 return true; 716 float sx = rmin [0] - x;
374} 717 float sy = rmin [1] - y;
375 718
376rxvt_img * 719 // TODO: adjust matrix for subpixel accuracy
377rxvt_img::clone () 720 int nx = floor (rmin [0]);
378{ 721 int ny = floor (rmin [1]);
379 return new rxvt_img (*this);
380}
381 722
382rxvt_img * 723 int new_width = ceil (rmax [0] - rmin [0]);
383rxvt_img::reify () 724 int new_height = ceil (rmax [1] - rmin [1]);
384{ 725
726 m = mat3x3::translate (-x, -y) * m * mat3x3::translate (x, y);
727
728 mat3x3 inv = m.invert ();
729
385 rxvt_img *img = new rxvt_img (s, format, 0, 0, w, h); 730 rxvt_img *img = new rxvt_img (s, format, nx, ny, new_width, new_height, repeat);
386 img->alloc (); 731 img->alloc ();
387 732
388 // todo, if x==0 and y==0 and w==real width we could clone
389 // but that involves an rtt to find pixmap width.
390
391 Display *dpy = s->display->dpy; 733 Display *dpy = s->display->dpy;
392 XRenderPictureAttributes pa; 734 Picture src = picture ();
393 pa.repeat = repeat;
394 Picture src = XRenderCreatePicture (dpy, pm, format, CPRepeat, &pa);
395 Picture dst = XRenderCreatePicture (dpy, img->pm, img->format, 0, 0); 735 Picture dst = XRenderCreatePicture (dpy, img->pm, img->format, 0, 0);
396 736
737 XTransform xfrm;
738
739 for (int i = 0; i < 3; ++i)
740 for (int j = 0; j < 3; ++j)
741 xfrm.matrix [i][j] = XDoubleToFixed (inv [i][j]);
742
743 XRenderSetPictureFilter (dpy, src, "good", 0, 0);
744 XRenderSetPictureTransform (dpy, src, &xfrm);
397 XRenderComposite (dpy, PictOpSrc, src, None, dst, x, y, 0, 0, 0, 0, w, h); 745 XRenderComposite (dpy, PictOpSrc, src, None, dst, sx, sy, 0, 0, 0, 0, new_width, new_height);
398 746
399 XRenderFreePicture (dpy, src); 747 XRenderFreePicture (dpy, src);
400 XRenderFreePicture (dpy, dst); 748 XRenderFreePicture (dpy, dst);
401 749
402 return img; 750 return img;
403} 751}
404 752
405rxvt_img * 753rxvt_img *
406rxvt_img::sub_rect (int x, int y, int width, int height) 754rxvt_img::scale (int new_width, int new_height)
407{ 755{
408 rxvt_img *img = clone (); 756 if (w == new_width && h == new_height)
757 return clone ();
409 758
410 img->x += x; 759 nv matrix[3][3] = {
411 img->y += y; 760 { new_width / (nv)w, 0, 0 },
412 img->w = width; 761 { 0, new_height / (nv)h, 0 },
413 img->h = height; 762 { 0, 0, 1 }
763 };
414 764
415 return img; 765 int old_repeat_mode = repeat;
416} 766 repeat = RepeatPad; // not right, but xrender can't properly scale it seems
417 767
768 rxvt_img *img = transform (matrix);
769
770 repeat = old_repeat_mode;
771 img->repeat = repeat;
772
773 return img;
774}
775
418rxvt_img * 776rxvt_img *
419rxvt_img::transform (int new_width, int new_height, double matrix[9]) 777rxvt_img::rotate (int cx, int cy, nv phi)
420{ 778{
779 nv s = sin (phi);
780 nv c = cos (phi);
781
782 nv matrix[3][3] = {
783#if 0
784 { c, -s, cx - c * cx + s * cy },
785 { s, c, cy - s * cx - c * cy },
786 { 0, 0, 1 }
787#else
788 { c, -s, 0 },
789 { s, c, 0 },
790 { 0, 0, 1 }
791#endif
792 };
793
794 move (-cx, -cy);
795 rxvt_img *img = transform (matrix);
796 move ( cx, cy);
797 img->move (cx, cy);
798
799 return img;
800}
801
802rxvt_img *
803rxvt_img::convert_format (XRenderPictFormat *new_format, const rgba &bg)
804{
805 if (new_format == format)
806 return clone ();
807
421 rxvt_img *img = new rxvt_img (s, format, 0, 0, new_width, new_height); 808 rxvt_img *img = new rxvt_img (s, new_format, x, y, w, h, repeat);
422 img->alloc (); 809 img->alloc ();
423 810
424 Display *dpy = s->display->dpy; 811 Display *dpy = s->display->dpy;
425 XRenderPictureAttributes pa; 812 Picture src = picture ();
426 pa.repeat = repeat;
427 Picture src = XRenderCreatePicture (dpy, pm, format, CPRepeat, &pa);
428 Picture dst = XRenderCreatePicture (dpy, img->pm, img->format, 0, 0); 813 Picture dst = XRenderCreatePicture (dpy, img->pm, new_format, 0, 0);
814 int op = PictOpSrc;
429 815
430 XTransform xfrm; 816 if (format->direct.alphaMask && !new_format->direct.alphaMask)
817 {
818 // does it have to be that complicated
819 XRenderColor rc = { bg.r, bg.g, bg.b, bg.a };
820 XRenderFillRectangle (dpy, PictOpSrc, dst, &rc, 0, 0, w, h);
431 821
432 for (int i = 0; i < 3; ++i) 822 op = PictOpOver;
433 for (int j = 0; j < 3; ++j) 823 }
434 xfrm.matrix [i][j] = XDoubleToFixed (matrix [i * 3 + j]);
435 824
436 xfrm.matrix [0][2] += XDoubleToFixed (x);//TODO
437 xfrm.matrix [0][3] += XDoubleToFixed (y);
438
439 XRenderSetPictureFilter (dpy, src, "good", 0, 0);
440 XRenderSetPictureTransform (dpy, src, &xfrm);
441 XRenderComposite (dpy, PictOpSrc, src, None, dst, 0, 0, 0, 0, 0, 0, new_width, new_height); 825 XRenderComposite (dpy, op, src, None, dst, 0, 0, 0, 0, 0, 0, w, h);
442 826
443 XRenderFreePicture (dpy, src); 827 XRenderFreePicture (dpy, src);
444 XRenderFreePicture (dpy, dst); 828 XRenderFreePicture (dpy, dst);
445 829
446 return img; 830 return img;
447} 831}
448 832
449rxvt_img * 833rxvt_img *
450rxvt_img::scale (int new_width, int new_height)
451{
452 double matrix[9] = {
453 w / (double)new_width, 0, 0,
454 0, h / (double)new_height, 0,
455 0, 0, 1
456 };
457
458 return transform (new_width, new_height, matrix);
459}
460
461rxvt_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)
478{
479 if (new_format == format)
480 return clone ();
481
482 rxvt_img *img = new rxvt_img (s, new_format, x, y, w, h);
483 img->alloc ();
484
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;
489
490 if (format->direct.alphaMask && !new_format->direct.alphaMask)
491 {
492 // 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 };
497 XRenderFillRectangle (dpy, PictOpSrc, dst, &rc, 0, 0, w, h);
498
499 op = PictOpOver;
500 }
501
502 XRenderComposite (dpy, op, src, None, dst, 0, 0, 0, 0, 0, 0, w, h);
503
504 XRenderFreePicture (dpy, src);
505 XRenderFreePicture (dpy, dst);
506
507 return img;
508}
509
510rxvt_img *
511rxvt_img::blend (rxvt_img *img, double factor) 834rxvt_img::blend (rxvt_img *img, nv factor)
512{ 835{
513 rxvt_img *img2 = clone (); 836 rxvt_img *img2 = clone ();
514 Display *dpy = s->display->dpy; 837 Display *dpy = s->display->dpy;
515 Picture src = XRenderCreatePicture (dpy, img->pm, img->format, 0, 0); 838 Picture src = img->picture ();
516 Picture dst = XRenderCreatePicture (dpy, img2->pm, img2->format, 0, 0); 839 Picture dst = XRenderCreatePicture (dpy, img2->pm, img2->format, 0, 0);
517 Picture mask = create_xrender_mask (dpy, img->pm, False); 840 Picture mask = create_xrender_mask (dpy, img->pm, False, False);
518 841
519 XRenderColor mask_c; 842 XRenderColor mask_c;
520 843
521 mask_c.alpha = float_to_component (factor); 844 mask_c.alpha = float_to_component (factor);
522 mask_c.red = 845 mask_c.red =

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines