libpng15.patch 799 B

12345678910111213141516171819
  1. --- src/t4k_common-0.1.1/src/t4k_loaders.c 2011-04-08 05:46:07.000000000 +0300
  2. +++ src.new/t4k_common-0.1.1/src/t4k_loaders.c 2012-05-02 10:35:41.836670434 +0300
  3. @@ -1028,12 +1028,9 @@
  4. {
  5. png_init_io(png_ptr, fi);
  6. - info_ptr->width = surf->w;
  7. - info_ptr->height = surf->h;
  8. - info_ptr->bit_depth = 8;
  9. - info_ptr->color_type = PNG_COLOR_TYPE_RGB_ALPHA;
  10. - info_ptr->interlace_type = 1;
  11. - info_ptr->valid = 0; /* will be updated by various png_set_FOO() functions */
  12. + png_set_IHDR(png_ptr, info_ptr, surf->w, surf->h, 8,
  13. + PNG_COLOR_TYPE_RGB_ALPHA, 1,
  14. + PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE);
  15. png_set_sRGB_gAMA_and_cHRM(png_ptr, info_ptr,
  16. PNG_sRGB_INTENT_PERCEPTUAL);