Bug 488955 - Fix linear gamma input tables, used in iCCP PNG testsuite images. r=joe

This commit is contained in:
Jeff Muizelaar 2009-04-22 13:49:09 -04:00
parent 2b562dee7e
commit dcd83451a6

View File

@ -79,7 +79,7 @@ void compute_curve_gamma_table_type0(float gamma_table[256])
{
unsigned int i;
for (i = 0; i < 256; i++) {
gamma_table[i] = i;
gamma_table[i] = i/255.;
}
}