mirror of https://github.com/adamdruppe/arsd.git
transparency longer than palette shouldbe allowed
This commit is contained in:
parent
7adb3922d9
commit
7a69e533ca
3
png.d
3
png.d
|
@ -1125,7 +1125,8 @@ struct LazyPngFile(LazyPngChunksProvider)
|
||||||
// 8 bit channel in same order as
|
// 8 bit channel in same order as
|
||||||
// palette
|
// palette
|
||||||
|
|
||||||
enforce(chunk.size < palette.length);
|
if(chunk.size > palette.length)
|
||||||
|
palette.length = chunk.size;
|
||||||
|
|
||||||
foreach(i, a; chunk.payload)
|
foreach(i, a; chunk.payload)
|
||||||
palette[i].a = a;
|
palette[i].a = a;
|
||||||
|
|
Loading…
Reference in New Issue