Fix nearest neighbor algorithm

This commit is contained in:
Elias Batek 2025-01-28 02:02:09 +01:00
parent 68a94f03c3
commit 9899b48f16
1 changed files with 2 additions and 4 deletions

View File

@ -2973,10 +2973,8 @@ private void scaleToImpl(ScalingFilter filter)(const Pixmap source, Pixmap targe
Point translate(const Point dstPos) {
pragma(inline, true);
const xCandidate = (() @trusted => (dstPos.x * ratios.ptr[0]).round().castTo!int)();
const yCandidate = (() @trusted => (dstPos.y * ratios.ptr[1]).round().castTo!int)();
const x = min(xCandidate, sourceMaxX);
const y = min(yCandidate, sourceMaxY);
const x = (dstPos.x * ratios[0]).floor().castTo!int;
const y = (dstPos.y * ratios[1]).floor().castTo!int;
return Point(x, y);
}