summaryrefslogtreecommitdiff
path: root/graphics/povray/patches/patch-af
blob: 53cae66f05ef210f06b7f6500bc7092233ded76e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
$NetBSD: patch-af,v 1.2 2010/06/18 06:55:44 wiz Exp $

--- source/png_pov.cpp.orig	2004-08-02 23:11:37.000000000 +0000
+++ source/png_pov.cpp
@@ -107,9 +107,6 @@ extern "C"
 	void png_pov_write_data(png_structp, png_bytep, png_size_t);
 	void png_pov_flush_data(png_structp);
 
-	// This is an internal function for libpng 
-	void png_write_finish_row(png_structp);
-
 
 	/*****************************************************************************
 	*
@@ -782,7 +779,6 @@ PNG_Image::~PNG_Image()
       {
          // finished prematurely - trick into thinking done
          png_ptr->num_rows = png_ptr->row_number;
-         png_write_finish_row(png_ptr);
       }
 
 #ifdef POV_COMMENTS // temporarily skip comment writing code 
@@ -1428,7 +1424,7 @@ void Read_Png_Image(IMAGE *Image, char *
 		if(r_info_ptr->valid & PNG_INFO_tRNS)
 		{
 			for (index = 0; index < r_info_ptr->num_trans; index++)
-				cmap[index].Transmit = 255 - r_info_ptr->trans[index];
+				cmap[index].Transmit = 255 - r_info_ptr->trans_alpha[index];
 		}
 
 		Image->data.map_lines = (unsigned char **)POV_MALLOC(height * sizeof(unsigned char *), "PNG image");
@@ -1461,7 +1457,7 @@ void Read_Png_Image(IMAGE *Image, char *
 		if(r_info_ptr->valid & PNG_INFO_tRNS)
 		{
 			for (index = 0; index < r_info_ptr->num_trans; index++)
-				cmap[index].Transmit = 255 - r_info_ptr->trans[index];
+				cmap[index].Transmit = 255 - r_info_ptr->trans_alpha[index];
 		}
 
 		Image->data.map_lines = (unsigned char **)POV_MALLOC(height * sizeof(unsigned char *), "PNG image");