mirror of https://github.com/adamdruppe/arsd.git
Fix flipVertically()
This commit is contained in:
parent
582e47c13b
commit
cf2e084a70
|
@ -1933,12 +1933,7 @@ void flipVertically(const Pixmap source, Pixmap target) @nogc {
|
||||||
auto dst = PixmapScannerRW(target);
|
auto dst = PixmapScannerRW(target);
|
||||||
|
|
||||||
foreach (srcLine; src) {
|
foreach (srcLine; src) {
|
||||||
auto dstLine = dst.back;
|
dst.back[] = srcLine[];
|
||||||
foreach (idxSrc, px; srcLine) {
|
|
||||||
const idxDst = (dstLine.length - (idxSrc + 1));
|
|
||||||
dstLine[idxDst] = px;
|
|
||||||
}
|
|
||||||
|
|
||||||
dst.popBack();
|
dst.popBack();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1951,7 +1946,7 @@ Pixmap flipVerticallyNew(const Pixmap source) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// ditto
|
/// ditto
|
||||||
void flipVerticallyInPlace(Pixmap source) {
|
void flipVerticallyInPlace(Pixmap source) @nogc {
|
||||||
auto scanner = PixmapScannerRW(source);
|
auto scanner = PixmapScannerRW(source);
|
||||||
|
|
||||||
while (!scanner.empty) {
|
while (!scanner.empty) {
|
||||||
|
|
Loading…
Reference in New Issue