mirror of https://github.com/adamdruppe/arsd.git
finally right greyscale lol
This commit is contained in:
parent
b7ad04afd9
commit
2ff7b77ac1
15
png.d
15
png.d
|
@ -168,13 +168,14 @@ void convertPngData(ubyte type, ubyte depth, const(ubyte)[] data, int width, uby
|
||||||
if(type == 3) {
|
if(type == 3) {
|
||||||
idata[idataIdx++] = p;
|
idata[idataIdx++] = p;
|
||||||
} else {
|
} else {
|
||||||
if(depth < 8) {
|
if(depth == 1) {
|
||||||
if(p == (1 << depth - 1)) {
|
p = p ? 0xff : 0;
|
||||||
p <<= 8 - depth;
|
} else if (depth == 2) {
|
||||||
p |= 1 << depth - 1;
|
p |= p << 2;
|
||||||
} else {
|
p |= p << 4;
|
||||||
p <<= 8 - depth;
|
}
|
||||||
}
|
else if (depth == 4) {
|
||||||
|
p |= p << 4;
|
||||||
}
|
}
|
||||||
idata[idataIdx++] = p;
|
idata[idataIdx++] = p;
|
||||||
idata[idataIdx++] = p;
|
idata[idataIdx++] = p;
|
||||||
|
|
Loading…
Reference in New Issue