Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 297760 | Differences between
and this patch

Collapse All | Expand All

(-)devil-1.7.8//src-IL/src/il_icon.c (-1 / +1 lines)
Lines 525-531 ILboolean ico_readpng_get_image(ICOIMAGE Link Here
525
525
526
	// Expand low-bit-depth grayscale images to 8 bits
526
	// Expand low-bit-depth grayscale images to 8 bits
527
	if (ico_color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8) {
527
	if (ico_color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8) {
528
		png_set_gray_1_2_4_to_8(ico_png_ptr);
528
		png_set_expand_gray_1_2_4_to_8(ico_png_ptr);
529
	}
529
	}
530
530
531
	// Expand RGB images with transparency to full alpha channels
531
	// Expand RGB images with transparency to full alpha channels
(-)devil-1.7.8//src-IL/src/il_png.c (-1 / +1 lines)
Lines 278-284 ILboolean readpng_get_image(ILdouble dis Link Here
278
278
279
	// Expand low-bit-depth grayscale images to 8 bits
279
	// Expand low-bit-depth grayscale images to 8 bits
280
	if (png_color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8) {
280
	if (png_color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8) {
281
		png_set_gray_1_2_4_to_8(png_ptr);
281
		png_set_expand_gray_1_2_4_to_8(png_ptr);
282
	}
282
	}
283
283
284
	// Expand RGB images with transparency to full alpha channels
284
	// Expand RGB images with transparency to full alpha channels

Return to bug 297760