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.98 by root, Sun Jun 17 21:58:18 2012 UTC vs.
Revision 1.108 by sf-exg, Fri Nov 7 13:45:55 2014 UTC

6 * Copyright (c) 2012 Marc Lehmann <schmorp@schmorp.de> 6 * Copyright (c) 2012 Marc Lehmann <schmorp@schmorp.de>
7 * Copyright (c) 2012 Emanuele Giaquinta <e.giaquinta@glauco.it> 7 * Copyright (c) 2012 Emanuele Giaquinta <e.giaquinta@glauco.it>
8 * 8 *
9 * This program is free software; you can redistribute it and/or modify 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 10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or 11 * the Free Software Foundation; either version 3 of the License, or
12 * (at your option) any later version. 12 * (at your option) any later version.
13 * 13 *
14 * This program is distributed in the hope that it will be useful, 14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
170 src = srcimg->picture (); 170 src = srcimg->picture ();
171 dst = this->dstimg->picture (); 171 dst = this->dstimg->picture ();
172 } 172 }
173 173
174 ecb_noinline 174 ecb_noinline
175 void mask (bool rgb = true, int x = 1, int y = 1) 175 void mask (bool rgb = true, int w = 1, int h = 1)
176 { 176 {
177 Pixmap pixmap = XCreatePixmap (dpy, srcimg->pm, x, y, rgb ? 32 : 8); 177 Pixmap pixmap = XCreatePixmap (dpy, srcimg->pm, w, h, rgb ? 32 : 8);
178 178
179 XRenderPictFormat *format = XRenderFindStandardFormat (dpy, rgb ? PictStandardARGB32 : PictStandardA8); 179 XRenderPictFormat *format = XRenderFindStandardFormat (dpy, rgb ? PictStandardARGB32 : PictStandardA8);
180 XRenderPictureAttributes pa; 180 XRenderPictureAttributes pa;
181 pa.repeat = RepeatNormal; 181 pa.repeat = RepeatNormal;
182 pa.component_alpha = rgb; 182 pa.component_alpha = rgb;
188 } 188 }
189 189
190 // CreateSolidFill creates a very very very weird picture 190 // CreateSolidFill creates a very very very weird picture
191 void mask (const rgba &c) 191 void mask (const rgba &c)
192 { 192 {
193 // the casts are needed in C++11 (see 8.5.1)
193 XRenderColor rc = { 194 XRenderColor rc = {
194 c.r * c.a / 65535, 195 (unsigned short)(c.r * c.a / 65535),
195 c.g * c.a / 65535, 196 (unsigned short)(c.g * c.a / 65535),
196 c.b * c.a / 65535, 197 (unsigned short)(c.b * c.a / 65535),
197 c.a 198 c.a
198 }; 199 };
199 msk = XRenderCreateSolidFill (dpy, &rc); 200 msk = XRenderCreateSolidFill (dpy, &rc);
200 ecb_assume (msk); 201 ecb_assume (msk);
201 } 202 }
202 203
203 void fill (const rgba &c) 204 void fill (const rgba &c)
204 { 205 {
205 XRenderColor rc = { 206 XRenderColor rc = {
206 c.r * c.a / 65535, 207 (unsigned short)(c.r * c.a / 65535),
207 c.g * c.a / 65535, 208 (unsigned short)(c.g * c.a / 65535),
208 c.b * c.a / 65535, 209 (unsigned short)(c.b * c.a / 65535),
209 c.a 210 c.a
210 }; 211 };
211 212
212 XRenderFillRectangle (dpy, PictOpSrc, msk, &rc, 0, 0, 1, 1); 213 XRenderFillRectangle (dpy, PictOpSrc, msk, &rc, 0, 0, 1, 1);
213 } 214 }
214 215
349 for (int y = 0; y < height; y++) 350 for (int y = 0; y < height; y++)
350 { 351 {
351 unsigned char *src = row; 352 unsigned char *src = row;
352 uint32_t *dst = (uint32_t *)line; 353 uint32_t *dst = (uint32_t *)line;
353 354
354 if (!pb_has_alpha)
355 for (int x = 0; x < width; x++) 355 for (int x = 0; x < width; x++)
356 { 356 {
357 uint8_t r = *src++; 357 uint8_t r = *src++;
358 uint8_t g = *src++; 358 uint8_t g = *src++;
359 uint8_t b = *src++; 359 uint8_t b = *src++;
360 uint8_t a = *src;
360 361
362 // this is done so it can be jump-free, but newer gcc's clone inner the loop
363 a = pb_has_alpha ? a : 255;
364 src += pb_has_alpha;
365
366 r = (r * a + 127) / 255;
367 g = (g * a + 127) / 255;
368 b = (b * a + 127) / 255;
369
361 uint32_t v = (255 << 24) | (r << 16) | (g << 8) | b; 370 uint32_t v = (a << 24) | (r << 16) | (g << 8) | b;
362 371
363 if (ecb_big_endian () ? !byte_order_mismatch : byte_order_mismatch) 372 if (ecb_big_endian () ? !byte_order_mismatch : byte_order_mismatch)
364 v = ecb_bswap32 (v); 373 v = ecb_bswap32 (v);
365 374
366 *dst++ = v; 375 *dst++ = v;
367 } 376 }
368 else
369 for (int x = 0; x < width; x++)
370 {
371 uint32_t v = *(uint32_t *)src; src += 4;
372
373 if (ecb_big_endian ())
374 v = ecb_bswap32 (v);
375
376 v = ecb_rotl32 (v, 8); // abgr to bgra
377
378 if (!byte_order_mismatch)
379 v = ecb_bswap32 (v);
380
381 *dst++ = v;
382 }
383 377
384 row += rowstride; 378 row += rowstride;
385 line += xi.bytes_per_line; 379 line += xi.bytes_per_line;
386 } 380 }
387 381
476 pm = pm2; 470 pm = pm2;
477 ref = new pixref (ref->w, ref->h); 471 ref = new pixref (ref->w, ref->h);
478} 472}
479 473
480void 474void
481rxvt_img::fill (const rgba &c) 475rxvt_img::fill (const rgba &c, int x, int y, int w, int h)
482{ 476{
483 XRenderColor rc = { c.r, c.g, c.b, c.a }; 477 XRenderColor rc = { c.r, c.g, c.b, c.a };
484 478
485 Display *dpy = s->dpy; 479 Display *dpy = s->dpy;
486 Picture src = picture (); 480 Picture src = picture ();
487 XRenderFillRectangle (dpy, PictOpSrc, src, &rc, 0, 0, w, h); 481 XRenderFillRectangle (dpy, PictOpSrc, src, &rc, x, y, w, h);
488 XRenderFreePicture (dpy, src); 482 XRenderFreePicture (dpy, src);
483}
484
485void
486rxvt_img::fill (const rgba &c)
487{
488 fill (c, 0, 0, w, h);
489} 489}
490 490
491void 491void
492rxvt_img::add_alpha () 492rxvt_img::add_alpha ()
493{ 493{
534 return clone (); 534 return clone ();
535 535
536 Display *dpy = s->dpy; 536 Display *dpy = s->dpy;
537 int size = max (rh, rv) * 2 + 1; 537 int size = max (rh, rv) * 2 + 1;
538 nv *kernel = (nv *)malloc (size * sizeof (nv)); 538 nv *kernel = (nv *)malloc (size * sizeof (nv));
539 XFixed *params = (XFixed *)malloc ((size + 2) * sizeof (XFixed)); 539 XFixed *params = rxvt_temp_buf<XFixed> (size + 2);
540 rxvt_img *img = new_empty (); 540 rxvt_img *img = new_empty ();
541 541
542 XRenderPictureAttributes pa; 542 XRenderPictureAttributes pa;
543 pa.repeat = RepeatPad; 543 pa.repeat = RepeatPad;
544 Picture src = XRenderCreatePicture (dpy, pm, format, CPRepeat, &pa); 544 Picture src = XRenderCreatePicture (dpy, pm, format, CPRepeat, &pa);
579 0, 0, 579 0, 0,
580 w, h); 580 w, h);
581 } 581 }
582 582
583 free (kernel); 583 free (kernel);
584 free (params);
585 584
586 XRenderFreePicture (dpy, src); 585 XRenderFreePicture (dpy, src);
587 XRenderFreePicture (dpy, dst); 586 XRenderFreePicture (dpy, dst);
588 XRenderFreePicture (dpy, tmp); 587 XRenderFreePicture (dpy, tmp);
589 588
590 return img; 589 return img;
590}
591
592rxvt_img *
593rxvt_img::muladd (nv mul, nv add)
594{
595 // STEP 1: double the image width, fill all odd columns with white (==1)
596
597 composer cc (this, new rxvt_img (s, format, 0, 0, w * 2, h, repeat));
598
599 // why the hell does XRenderSetPictureTransform want a writable matrix :(
600 // that keeps us from just static const'ing this matrix.
601 XTransform h_double = {
602 0x08000, 0, 0,
603 0, 0x10000, 0,
604 0, 0, 0x10000
605 };
606
607 XRenderSetPictureFilter (cc.dpy, cc.src, "nearest", 0, 0);
608 XRenderSetPictureTransform (cc.dpy, cc.src, &h_double);
609 XRenderComposite (cc.dpy, PictOpSrc, cc.src, None, cc.dst, 0, 0, 0, 0, 0, 0, w * 2, h);
610
611 cc.mask (false, 2, 1);
612
613 static const XRenderColor c0 = { 0, 0, 0, 0 };
614 XRenderFillRectangle (cc.dpy, PictOpSrc, cc.msk, &c0, 0, 0, 1, 1);
615 static const XRenderColor c1 = { 65535, 65535, 65535, 65535 };
616 XRenderFillRectangle (cc.dpy, PictOpSrc, cc.msk, &c1, 1, 0, 1, 1);
617
618 Picture white = XRenderCreateSolidFill (cc.dpy, &c1);
619
620 XRenderComposite (cc.dpy, PictOpOver, white, cc.msk, cc.dst, 0, 0, 0, 0, 0, 0, w * 2, h);
621
622 XRenderFreePicture (cc.dpy, white);
623
624 // STEP 2: convolve the image with a 3x1 filter
625 // a 2x1 filter would obviously suffice, but given the total lack of specification
626 // for xrender, I expect different xrender implementations to randomly diverge.
627 // we also halve the image, and hope for the best (again, for lack of specs).
628 composer cc2 (cc.dstimg);
629
630 XFixed kernel [] = {
631 XDoubleToFixed (3), XDoubleToFixed (1),
632 XDoubleToFixed (0), XDoubleToFixed (mul), XDoubleToFixed (add)
633 };
634
635 XTransform h_halve = {
636 0x20000, 0, 0,
637 0, 0x10000, 0,
638 0, 0, 0x10000
639 };
640
641 XRenderSetPictureFilter (cc.dpy, cc2.src, "nearest", 0, 0);
642 XRenderSetPictureTransform (cc.dpy, cc2.src, &h_halve);
643 XRenderSetPictureFilter (cc.dpy, cc2.src, FilterConvolution, kernel, ecb_array_length (kernel));
644
645 XRenderComposite (cc.dpy, PictOpSrc, cc2.src, None, cc2.dst, 0, 0, 0, 0, 0, 0, w * 2, h);
646
647 return cc2;
591} 648}
592 649
593ecb_noinline static void 650ecb_noinline static void
594extract (int32_t cl0, int32_t cl1, int32_t &c, unsigned short &xc) 651extract (int32_t cl0, int32_t cl1, int32_t &c, unsigned short &xc)
595{ 652{
701rxvt_img::reify () 758rxvt_img::reify ()
702{ 759{
703 if (x == 0 && y == 0 && w == ref->w && h == ref->h) 760 if (x == 0 && y == 0 && w == ref->w && h == ref->h)
704 return clone (); 761 return clone ();
705 762
706 Display *dpy = s->dpy;
707
708 // add an alpha channel if... 763 // add an alpha channel if...
709 bool alpha = !format->direct.alphaMask // pixmap has none yet 764 bool alpha = !format->direct.alphaMask // pixmap has none yet
710 && (x || y) // we need one because of non-zero offset 765 && (x || y) // we need one because of non-zero offset
711 && repeat == RepeatNone; // and we have no good pixels to fill with 766 && repeat == RepeatNone; // and we have no good pixels to fill with
712 767
713 composer cc (this, new rxvt_img (s, alpha ? find_alpha_format_for (s->dpy, format) : format, 768 composer cc (this, new rxvt_img (s, alpha ? find_alpha_format_for (s->dpy, format) : format,
714 0, 0, w, h, repeat)); 769 0, 0, w, h, repeat));
715 770
716 if (alpha) 771 if (repeat == RepeatNone)
717 { 772 {
718 XRenderColor rc = { 0, 0, 0, 0 }; 773 XRenderColor rc = { 0, 0, 0, 0 };
719 XRenderFillRectangle (cc.dpy, PictOpSrc, cc.dst, &rc, 0, 0, w, h);//TODO: split into four fillrectangles 774 XRenderFillRectangle (cc.dpy, PictOpSrc, cc.dst, &rc, 0, 0, w, h);//TODO: split into four fillrectangles
720 XRenderComposite (cc.dpy, PictOpSrc, cc.src, None, cc.dst, 0, 0, 0, 0, x, y, ref->w, ref->h); 775 XRenderComposite (cc.dpy, PictOpSrc, cc.src, None, cc.dst, 0, 0, 0, 0, x, y, ref->w, ref->h);
721 } 776 }
815} 870}
816 871
817rxvt_img * 872rxvt_img *
818rxvt_img::rotate (int cx, int cy, nv phi) 873rxvt_img::rotate (int cx, int cy, nv phi)
819{ 874{
820#if 0
821 { c, -s, cx - c * cx + s * cy },
822 { s, c, cy - s * cx - c * cy },
823 { 0, 0, 1 }
824#endif
825
826 move (-cx, -cy); 875 move (-cx, -cy);
827 rxvt_img *img = transform (mat3x3::rotate (phi)); 876 rxvt_img *img = transform (mat3x3::rotate (phi));
828 move ( cx, cy); 877 move ( cx, cy);
829 img->move (cx, cy); 878 img->move (cx, cy);
830 879
866 915
867 return cc; 916 return cc;
868} 917}
869 918
870rxvt_img * 919rxvt_img *
920rxvt_img::shade (nv factor, rgba c)
921{
922 clamp_it (factor, -1., 1.);
923 factor++;
924
925 if (factor > 1)
926 {
927 c.r = c.r * (2 - factor);
928 c.g = c.g * (2 - factor);
929 c.b = c.b * (2 - factor);
930 }
931 else
932 {
933 c.r = c.r * factor;
934 c.g = c.g * factor;
935 c.b = c.b * factor;
936 }
937
938 rxvt_img *img = this->tint (c);
939
940 if (factor > 1)
941 {
942 c.a = 0xffff;
943 c.r =
944 c.g =
945 c.b = 0xffff * (factor - 1);
946
947 img->brightness (c.r, c.g, c.b, c.a);
948 }
949
950 return img;
951}
952
953rxvt_img *
871rxvt_img::filter (const char *name, int nparams, nv *params) 954rxvt_img::filter (const char *name, int nparams, nv *params)
872{ 955{
873 rxvt_img *img = new_empty ();
874
875 composer cc (img); 956 composer cc (this);
876 957
877 XFixed *xparams = rxvt_temp_buf<XFixed> (nparams); 958 XFixed *xparams = rxvt_temp_buf<XFixed> (nparams);
878 959
879 for (int i = 0; i < nparams; ++i) 960 for (int i = 0; i < nparams; ++i)
880 xparams [i] = XDoubleToFixed (params [i]); 961 xparams [i] = XDoubleToFixed (params [i]);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines