view src/sdl_image-1-png.patch @ 1635:e2b5aa047c0a

package sdl_image: patch attribution
author Mark Brand <mabrand@mabrand.nl>
date Sun, 06 Mar 2011 19:49:56 +0100
parents 99be6a1daee1
children
line wrap: on
line source

This file is part of mingw-cross-env.
See doc/index.html for further information.

This patch has been taken from:
http://lists.libsdl.org/pipermail/sdl-libsdl.org/2011-March/079946.html

diff --git a/IMG_png.c b/IMG_png.c
index a79fb9c..67af463 100644
--- a/IMG_png.c
+++ b/IMG_png.c
@@ -80,8 +80,13 @@ static struct {
 	void (*png_destroy_read_struct) (png_structpp png_ptr_ptr, png_infopp info_ptr_ptr, png_infopp end_info_ptr_ptr);
 	png_uint_32 (*png_get_IHDR) (png_structp png_ptr, png_infop info_ptr, png_uint_32 *width, png_uint_32 *height, int *bit_depth, int *color_type, int *interlace_method, int *compression_method, int *filter_method);
 	png_voidp (*png_get_io_ptr) (png_structp png_ptr);
+#if (PNG_LIBPNG_VER < 10500)
 	png_uint_32 (*png_get_tRNS) (png_structp png_ptr, png_infop info_ptr, png_bytep *trans, int *num_trans, png_color_16p *trans_values);
 	png_uint_32 (*png_get_valid) (png_structp png_ptr, png_infop info_ptr, png_uint_32 flag);
+#else
+	png_uint_32 (*png_get_tRNS) (png_const_structp png_ptr, png_infop info_ptr, png_bytep *trans, int *num_trans, png_color_16p *trans_values);
+	png_uint_32 (*png_get_valid) (png_const_structp png_ptr, png_const_infop info_ptr, png_uint_32 flag);
+#endif
 	void (*png_read_image) (png_structp png_ptr, png_bytepp image);
 	void (*png_read_info) (png_structp png_ptr, png_infop info_ptr);
 	void (*png_read_update_info) (png_structp png_ptr, png_infop info_ptr);
@@ -90,7 +95,11 @@ static struct {
 	void (*png_set_packing) (png_structp png_ptr);
 	void (*png_set_read_fn) (png_structp png_ptr, png_voidp io_ptr, png_rw_ptr read_data_fn);
 	void (*png_set_strip_16) (png_structp png_ptr);
+#if (PNG_LIBPNG_VER < 10500)
 	int (*png_sig_cmp) (png_bytep sig, png_size_t start, png_size_t num_to_check);
+#else
+	int (*png_sig_cmp) (png_const_bytep sig, png_size_t start, png_size_t num_to_check);
+#endif
 } lib;
 
 #ifdef LOAD_PNG_DYNAMIC
@@ -347,7 +356,11 @@ SDL_Surface *IMG_LoadPNG_RW(SDL_RWops *src)
 	 * the normal method of doing things with libpng).  REQUIRED unless you
 	 * set up your own error handlers in png_create_read_struct() earlier.
 	 */
+#if (PNG_LIBPNG_VER < 10500)
 	if ( setjmp(png_ptr->jmpbuf) ) {
+#else
+	if ( setjmp (png_jmpbuf(png_ptr)) ) {
+#endif
 		error = "Error reading the PNG file.";
 		goto done;
 	}
@@ -416,9 +429,17 @@ SDL_Surface *IMG_LoadPNG_RW(SDL_RWops *src)
 			Rmask = 0x000000FF;
 			Gmask = 0x0000FF00;
 			Bmask = 0x00FF0000;
+#if (PNG_LIBPNG_VER < 10500)
 			Amask = (info_ptr->channels == 4) ? 0xFF000000 : 0;
+#else
+			Amask = (png_get_channels(png_ptr, info_ptr) == 4) ? 0xFF000000 : 0;
+#endif
 		} else {
+#if (PNG_LIBPNG_VER < 10500)
 		        int s = (info_ptr->channels == 4) ? 0 : 8;
+#else
+		        int s = (png_get_channels(png_ptr, info_ptr) == 4) ? 0 : 8;
+#endif
 			Rmask = 0xFF000000 >> s;
 			Gmask = 0x00FF0000 >> s;
 			Bmask = 0x0000FF00 >> s;
@@ -426,7 +447,11 @@ SDL_Surface *IMG_LoadPNG_RW(SDL_RWops *src)
 		}
 	}
 	surface = SDL_AllocSurface(SDL_SWSURFACE, width, height,
+#if (PNG_LIBPNG_VER < 10500)
 			bit_depth*info_ptr->channels, Rmask,Gmask,Bmask,Amask);
+#else
+			bit_depth*png_get_channels(png_ptr, info_ptr), Rmask,Gmask,Bmask,Amask);
+#endif
 	if ( surface == NULL ) {
 		error = "Out of memory";
 		goto done;
@@ -466,6 +491,11 @@ SDL_Surface *IMG_LoadPNG_RW(SDL_RWops *src)
 
 	/* Load the palette, if any */
 	palette = surface->format->palette;
+#if (PNG_LIBPNG_VER >= 10500)
+	png_colorp info_palette = 0;
+	int info_num_palette = 0;
+	png_get_PLTE(png_ptr, info_ptr, &info_palette, &info_num_palette);
+#endif
 	if ( palette ) {
 	    if(color_type == PNG_COLOR_TYPE_GRAY) {
 		palette->ncolors = 256;
@@ -474,12 +504,21 @@ SDL_Surface *IMG_LoadPNG_RW(SDL_RWops *src)
 		    palette->colors[i].g = i;
 		    palette->colors[i].b = i;
 		}
+#if (PNG_LIBPNG_VER < 10500)
 	    } else if (info_ptr->num_palette > 0 ) {
 		palette->ncolors = info_ptr->num_palette; 
 		for( i=0; i<info_ptr->num_palette; ++i ) {
 		    palette->colors[i].b = info_ptr->palette[i].blue;
 		    palette->colors[i].g = info_ptr->palette[i].green;
 		    palette->colors[i].r = info_ptr->palette[i].red;
+#else
+	    } else if (info_num_palette > 0 ) {
+		palette->ncolors = info_num_palette;
+		for( i=0; i<info_num_palette; ++i ) {
+		    palette->colors[i].b = info_palette[i].blue;
+		    palette->colors[i].g = info_palette[i].green;
+		    palette->colors[i].r = info_palette[i].red;
+#endif
 		}
 	    }
 	}