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.41 by root, Thu Jun 7 11:34:09 2012 UTC vs.
Revision 1.86 by root, Thu Jun 14 19:31:17 2012 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines