From 200524851440fc2a23f1a8c7f661883043508f92 Mon Sep 17 00:00:00 2001 From: Elias Batek Date: Sat, 1 Feb 2025 22:52:02 +0100 Subject: [PATCH] Refactor scaling code --- pixmappaint.d | 29 +++++++++++++++++------------ 1 file changed, 17 insertions(+), 12 deletions(-) diff --git a/pixmappaint.d b/pixmappaint.d index 83529d0..5efc1bf 100644 --- a/pixmappaint.d +++ b/pixmappaint.d @@ -3132,6 +3132,10 @@ private void scaleToImpl(ScalingFilter filter)(const Pixmap source, Pixmap targe sourceMax[idxY], ); + static if (directionY == down) { + const nLines = 1 + posSrcY[idxB] - posSrcY[idxT]; + } + static if (directionY == up) { const ulong[2] weightsY = () { ulong[2] result; @@ -3156,6 +3160,10 @@ private void scaleToImpl(ScalingFilter filter)(const Pixmap source, Pixmap targe sourceMax[idxX], ); + static if (directionX == down) { + const nSamples = 1 + posSrcX[idxR] - posSrcX[idxL]; + } + const Point[4] posNeighs = [ Point(posSrcX[idxL], posSrcY[idxT]), Point(posSrcX[idxR], posSrcY[idxT]), @@ -3200,10 +3208,11 @@ private void scaleToImpl(ScalingFilter filter)(const Pixmap source, Pixmap targe pragma(inline, true); static if (mode == SamplingMode.multi) { - const nLines = 1 + posSrcY[idxB] - posSrcY[idxT]; + alias ForeachLineCallback = + InterPixel delegate(const Point posLine) @safe pure nothrow @nogc; - alias ForeachLineCallback = InterPixel delegate(const Point posLine) @safe pure nothrow @nogc; InterPixel foreachLine(scope ForeachLineCallback apply) { + pragma(inline, true); InterPixel linesSum = 0; foreach (lineY; posSrcY[idxT] .. (1 + posSrcY[idxB])) { const posLine = Point(posSrcX[idxL], lineY); @@ -3243,7 +3252,6 @@ private void scaleToImpl(ScalingFilter filter)(const Pixmap source, Pixmap targe // ========== Down ========== static if (directionX == down) { static if (mode == SamplingMode.single) { - const nSamples = 1 + posSrcX[idxR] - posSrcX[idxL]; const posSampling = Point(posSrcX[idxL], posSrcY[idxT]); const samplingOffset = source.scanTo(posSampling); const srcSamples = () @trusted { @@ -3263,21 +3271,20 @@ private void scaleToImpl(ScalingFilter filter)(const Pixmap source, Pixmap targe } static if (mode == SamplingMode.dual) { - const nSamples = 1 + posSrcX[idxR] - posSrcX[idxL]; const Point[2] posSampling = [ - Point(posSrcX[idxL], posSrcY[idxT]), - Point(posSrcX[idxL], posSrcY[idxB]), + posNeighs[idxTL], + posNeighs[idxBL], ]; const int[2] samplingOffsets = [ - source.scanTo(posSampling[0]), - source.scanTo(posSampling[1]), + source.scanTo(posSampling[idxT]), + source.scanTo(posSampling[idxB]), ]; const srcSamples2 = () @trusted { const(const(Pixel)[])[2] result = [ - source.data.ptr[samplingOffsets[0] .. (samplingOffsets[0] + nSamples)], - source.data.ptr[samplingOffsets[1] .. (samplingOffsets[1] + nSamples)], + source.data.ptr[samplingOffsets[idxT] .. (samplingOffsets[idxT] + nSamples)], + source.data.ptr[samplingOffsets[idxB] .. (samplingOffsets[idxB] + nSamples)], ]; return result; }(); @@ -3299,8 +3306,6 @@ private void scaleToImpl(ScalingFilter filter)(const Pixmap source, Pixmap targe } static if (mode == SamplingMode.multi) { - const nSamples = 1 + posSrcX[idxR] - posSrcX[idxL]; - auto ySum = foreachLine(delegate(const Point posLine) { const samplingOffset = source.scanTo(posLine); const srcSamples = () @trusted {