mirror of https://github.com/adamdruppe/arsd.git
1bpp bug
This commit is contained in:
parent
5a9106c6a0
commit
cc15188833
7
png.d
7
png.d
|
@ -143,6 +143,8 @@ MemoryImage imageFromPng(PNG* png) {
|
|||
pixel++; if(pixel == h.width) break loop;
|
||||
idata[idataIdx++] = (b >> 2) & 0x01;
|
||||
pixel++; if(pixel == h.width) break loop;
|
||||
idata[idataIdx++] = (b >> 1) & 0x01;
|
||||
pixel++; if(pixel == h.width) break loop;
|
||||
idata[idataIdx++] = b & 0x01;
|
||||
break;
|
||||
case 2:
|
||||
|
@ -1202,8 +1204,9 @@ struct LazyPngFile(LazyPngChunksProvider)
|
|||
if(chunks.front().stype != "IDAT") {
|
||||
buffer ~= cast(ubyte[]) decompressor.flush();
|
||||
if(buffer.length != 0) {
|
||||
buffer ~= cast(ubyte[])
|
||||
decompressor.uncompress(chunks.front().payload);
|
||||
// FIXME why was this here?
|
||||
//buffer ~= cast(ubyte[])
|
||||
//decompressor.uncompress(chunks.front().payload);
|
||||
continue;
|
||||
}
|
||||
current = null;
|
||||
|
|
Loading…
Reference in New Issue