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;
|
pixel++; if(pixel == h.width) break loop;
|
||||||
idata[idataIdx++] = (b >> 2) & 0x01;
|
idata[idataIdx++] = (b >> 2) & 0x01;
|
||||||
pixel++; if(pixel == h.width) break loop;
|
pixel++; if(pixel == h.width) break loop;
|
||||||
|
idata[idataIdx++] = (b >> 1) & 0x01;
|
||||||
|
pixel++; if(pixel == h.width) break loop;
|
||||||
idata[idataIdx++] = b & 0x01;
|
idata[idataIdx++] = b & 0x01;
|
||||||
break;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
|
@ -1202,8 +1204,9 @@ struct LazyPngFile(LazyPngChunksProvider)
|
||||||
if(chunks.front().stype != "IDAT") {
|
if(chunks.front().stype != "IDAT") {
|
||||||
buffer ~= cast(ubyte[]) decompressor.flush();
|
buffer ~= cast(ubyte[]) decompressor.flush();
|
||||||
if(buffer.length != 0) {
|
if(buffer.length != 0) {
|
||||||
buffer ~= cast(ubyte[])
|
// FIXME why was this here?
|
||||||
decompressor.uncompress(chunks.front().payload);
|
//buffer ~= cast(ubyte[])
|
||||||
|
//decompressor.uncompress(chunks.front().payload);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
current = null;
|
current = null;
|
||||||
|
|
Loading…
Reference in New Issue