From 16994b51f64b269e22b669e06232af684edf632e Mon Sep 17 00:00:00 2001 From: Elias Batek Date: Sat, 1 Feb 2025 05:19:08 +0100 Subject: [PATCH] Move Y weight calculation --- pixmappaint.d | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/pixmappaint.d b/pixmappaint.d index 2fa9435..9dd77fe 100644 --- a/pixmappaint.d +++ b/pixmappaint.d @@ -3107,6 +3107,15 @@ private void scaleToImpl(ScalingFilter filter)(const Pixmap source, Pixmap targe sourceMax[idxY], ); + static if (directionY == up) { + const ulong[2] weightsY = () { + ulong[2] result; + result[0] = (udecimalHalf + posSrcY[1] - posSrcCenterY).fractionalDigits; + result[1] = ulong(uint.max) + 1 - result[0]; + return result; + }(); + } + foreach (x, ref pxDst; dstLine) { const posDstX = x.castTo!uint; const int[2] posDst = [ @@ -3382,13 +3391,6 @@ private void scaleToImpl(ScalingFilter filter)(const Pixmap source, Pixmap targe c = clamp255(sampleX!(SamplingMode.multi)()); } static if (directionY == up) { - const ulong[2] weightsY = () { - ulong[2] result; - result[0] = (udecimalHalf + posSrcY[1] - posSrcCenter[idxY]).fractionalDigits; - result[1] = ulong(uint.max) + 1 - result[0]; - return result; - }(); - const xSums = sampleX!(SamplingMode.dual)(); ulong ySum = 0;