mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 488955 - Fix linear gamma input tables, used in iCCP PNG testsuite images. r=joe
This commit is contained in:
parent
2b562dee7e
commit
dcd83451a6
@ -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.;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user