diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2010-03-29 06:18:50 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2010-03-29 06:18:50 +0000 |
commit | a8941c0a62230944b3690103ac9223dc0fb0fce0 (patch) | |
tree | 04250aa48b68ebe07bce493d381032c88bcd9bfc /x11/kdebase4-workspace | |
parent | 5624b251308bd320abadd6073357bf7b0ef5e936 (diff) | |
download | ports-a8941c0a62230944b3690103ac9223dc0fb0fce0.tar.gz ports-a8941c0a62230944b3690103ac9223dc0fb0fce0.zip |
Notes
Diffstat (limited to 'x11/kdebase4-workspace')
-rw-r--r-- | x11/kdebase4-workspace/files/patch-ksplash-ksplashx-qpngio.cpp | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/x11/kdebase4-workspace/files/patch-ksplash-ksplashx-qpngio.cpp b/x11/kdebase4-workspace/files/patch-ksplash-ksplashx-qpngio.cpp new file mode 100644 index 000000000000..ec72475697a8 --- /dev/null +++ b/x11/kdebase4-workspace/files/patch-ksplash-ksplashx-qpngio.cpp @@ -0,0 +1,33 @@ +--- ksplash/ksplashx/qpngio.cpp.orig 2008-01-05 00:55:38.000000000 +0100 ++++ ksplash/ksplashx/qpngio.cpp 2010-03-29 07:49:55.000000000 +0200 +@@ -151,7 +151,7 @@ + image.setColor( i, qRgba(c,c,c,0xff) ); + } + if ( png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS) ) { +- const int g = info_ptr->trans_values.gray; ++ const int g = info_ptr->trans_color.gray; + if (g < ncols) { + image.setAlphaBuffer(true); + image.setColor(g, image.color(g) & RGB_MASK); +@@ -179,7 +179,7 @@ + info_ptr->palette[i].red, + info_ptr->palette[i].green, + info_ptr->palette[i].blue, +- info_ptr->trans[i] ++ info_ptr->trans_alpha[i] + ) + ); + i++; +@@ -307,9 +307,9 @@ + png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS) + if (image.depth()==32 && png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) { + QRgb trans = 0xFF000000 | qRgb( +- (info_ptr->trans_values.red << 8 >> bit_depth)&0xff, +- (info_ptr->trans_values.green << 8 >> bit_depth)&0xff, +- (info_ptr->trans_values.blue << 8 >> bit_depth)&0xff); ++ (info_ptr->trans_color.red << 8 >> bit_depth)&0xff, ++ (info_ptr->trans_color.green << 8 >> bit_depth)&0xff, ++ (info_ptr->trans_color.blue << 8 >> bit_depth)&0xff); + for (uint y=0; y<height; y++) { + for (uint x=0; x<info_ptr->width; x++) { + if (((uint**)jt)[y][x] == trans) { |