diff options
Diffstat (limited to 'abs/extra/libgdiplus/gdiplus-png14.patch')
-rw-r--r-- | abs/extra/libgdiplus/gdiplus-png14.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/abs/extra/libgdiplus/gdiplus-png14.patch b/abs/extra/libgdiplus/gdiplus-png14.patch new file mode 100644 index 0000000..d132608 --- /dev/null +++ b/abs/extra/libgdiplus/gdiplus-png14.patch @@ -0,0 +1,20 @@ +--- src/pngcodec.c.orig 2010-01-16 23:47:17.000000000 +0100 ++++ src/pngcodec.c 2010-01-16 23:49:49.000000000 +0100 +@@ -352,7 +352,7 @@ + info_ptr->palette[i].blue, + info_ptr->palette[i].green, + info_ptr->palette[i].red, +- info_ptr->trans[i]); /* alpha */ ++ info_ptr->trans_alpha[i]); /* alpha */ + } + } + +@@ -418,7 +418,7 @@ + } + + if ((color_type == PNG_COLOR_TYPE_GRAY) && (bit_depth < 8)) { +- png_set_gray_1_2_4_to_8(png_ptr); ++ png_set_expand_gray_1_2_4_to_8(png_ptr); + } + + if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) { |