mirror of https://github.com/adamdruppe/arsd.git
Remove superfluous `SamplingMode` templating
This commit is contained in:
parent
c65c8d462e
commit
4ca96e723b
|
@ -3188,17 +3188,11 @@ private void scaleToImpl(ScalingFilter filter)(const Pixmap source, Pixmap targe
|
||||||
static if (filter == ScalingFilter.bilinear) {
|
static if (filter == ScalingFilter.bilinear) {
|
||||||
auto pxInt = Pixel(0, 0, 0, 0);
|
auto pxInt = Pixel(0, 0, 0, 0);
|
||||||
|
|
||||||
enum SamplingMode {
|
|
||||||
single,
|
|
||||||
dual,
|
|
||||||
multi,
|
|
||||||
}
|
|
||||||
|
|
||||||
// ======== Interpolate X ========
|
// ======== Interpolate X ========
|
||||||
auto sampleX(SamplingMode mode)() {
|
auto sampleX() {
|
||||||
pragma(inline, true);
|
pragma(inline, true);
|
||||||
|
|
||||||
static if (mode == SamplingMode.multi) {
|
static if (directionY == down) {
|
||||||
alias ForeachLineCallback =
|
alias ForeachLineCallback =
|
||||||
InterPixel delegate(const Point posLine) @safe pure nothrow @nogc;
|
InterPixel delegate(const Point posLine) @safe pure nothrow @nogc;
|
||||||
|
|
||||||
|
@ -3216,11 +3210,11 @@ private void scaleToImpl(ScalingFilter filter)(const Pixmap source, Pixmap targe
|
||||||
|
|
||||||
// ========== None ==========
|
// ========== None ==========
|
||||||
static if (directionX == none) {
|
static if (directionX == none) {
|
||||||
static if (mode == SamplingMode.single) {
|
static if (directionY == none) {
|
||||||
return pxNeighs[idxTL];
|
return pxNeighs[idxTL];
|
||||||
}
|
}
|
||||||
|
|
||||||
static if (mode == SamplingMode.dual) {
|
static if (directionY == up) {
|
||||||
return () @trusted {
|
return () @trusted {
|
||||||
InterPixel[2] result = [
|
InterPixel[2] result = [
|
||||||
toInterPixel(pxNeighs[idxTL]),
|
toInterPixel(pxNeighs[idxTL]),
|
||||||
|
@ -3230,7 +3224,7 @@ private void scaleToImpl(ScalingFilter filter)(const Pixmap source, Pixmap targe
|
||||||
}();
|
}();
|
||||||
}
|
}
|
||||||
|
|
||||||
static if (mode == SamplingMode.multi) {
|
static if (directionY == down) {
|
||||||
auto ySum = foreachLine(delegate(const Point posLine) {
|
auto ySum = foreachLine(delegate(const Point posLine) {
|
||||||
const pxSrc = source.getPixel(posLine);
|
const pxSrc = source.getPixel(posLine);
|
||||||
return toInterPixel(pxSrc);
|
return toInterPixel(pxSrc);
|
||||||
|
@ -3242,7 +3236,7 @@ private void scaleToImpl(ScalingFilter filter)(const Pixmap source, Pixmap targe
|
||||||
|
|
||||||
// ========== Down ==========
|
// ========== Down ==========
|
||||||
static if (directionX == down) {
|
static if (directionX == down) {
|
||||||
static if (mode == SamplingMode.single) {
|
static if (directionY == none) {
|
||||||
const posSampling = posNeighs[idxTL];
|
const posSampling = posNeighs[idxTL];
|
||||||
const samplingOffset = source.scanTo(posSampling);
|
const samplingOffset = source.scanTo(posSampling);
|
||||||
const srcSamples = () @trusted {
|
const srcSamples = () @trusted {
|
||||||
|
@ -3261,7 +3255,7 @@ private void scaleToImpl(ScalingFilter filter)(const Pixmap source, Pixmap targe
|
||||||
return toPixel(xSum);
|
return toPixel(xSum);
|
||||||
}
|
}
|
||||||
|
|
||||||
static if (mode == SamplingMode.dual) {
|
static if (directionY == up) {
|
||||||
const Point[2] posSampling = [
|
const Point[2] posSampling = [
|
||||||
posNeighs[idxTL],
|
posNeighs[idxTL],
|
||||||
posNeighs[idxBL],
|
posNeighs[idxBL],
|
||||||
|
@ -3296,7 +3290,7 @@ private void scaleToImpl(ScalingFilter filter)(const Pixmap source, Pixmap targe
|
||||||
return xSums;
|
return xSums;
|
||||||
}
|
}
|
||||||
|
|
||||||
static if (mode == SamplingMode.multi) {
|
static if (directionY == down) {
|
||||||
auto ySum = foreachLine(delegate(const Point posLine) {
|
auto ySum = foreachLine(delegate(const Point posLine) {
|
||||||
const samplingOffset = source.scanTo(posLine);
|
const samplingOffset = source.scanTo(posLine);
|
||||||
const srcSamples = () @trusted {
|
const srcSamples = () @trusted {
|
||||||
|
@ -3324,10 +3318,10 @@ private void scaleToImpl(ScalingFilter filter)(const Pixmap source, Pixmap targe
|
||||||
static if (directionX == up) {
|
static if (directionX == up) {
|
||||||
|
|
||||||
if (posSrcX[0] == posSrcX[1]) {
|
if (posSrcX[0] == posSrcX[1]) {
|
||||||
static if (mode == SamplingMode.single) {
|
static if (directionY == none) {
|
||||||
return pxNeighs[idxTL];
|
return pxNeighs[idxTL];
|
||||||
}
|
}
|
||||||
static if (mode == SamplingMode.dual) {
|
static if (directionY == up) {
|
||||||
return () @trusted {
|
return () @trusted {
|
||||||
InterPixel[2] result = [
|
InterPixel[2] result = [
|
||||||
toInterPixel(pxNeighs[idxTL]),
|
toInterPixel(pxNeighs[idxTL]),
|
||||||
|
@ -3336,7 +3330,7 @@ private void scaleToImpl(ScalingFilter filter)(const Pixmap source, Pixmap targe
|
||||||
return result;
|
return result;
|
||||||
}();
|
}();
|
||||||
}
|
}
|
||||||
static if (mode == SamplingMode.multi) {
|
static if (directionY == down) {
|
||||||
auto ySum = foreachLine(delegate(const Point posLine) {
|
auto ySum = foreachLine(delegate(const Point posLine) {
|
||||||
const samplingOffset = source.scanTo(posLine);
|
const samplingOffset = source.scanTo(posLine);
|
||||||
return toInterPixel(
|
return toInterPixel(
|
||||||
|
@ -3355,7 +3349,7 @@ private void scaleToImpl(ScalingFilter filter)(const Pixmap source, Pixmap targe
|
||||||
return result;
|
return result;
|
||||||
}();
|
}();
|
||||||
|
|
||||||
static if (mode == SamplingMode.single) {
|
static if (directionY == none) {
|
||||||
InterPixel xSum = [0, 0, 0, 0];
|
InterPixel xSum = [0, 0, 0, 0];
|
||||||
|
|
||||||
foreach (immutable ib, ref c; xSum) {
|
foreach (immutable ib, ref c; xSum) {
|
||||||
|
@ -3369,7 +3363,7 @@ private void scaleToImpl(ScalingFilter filter)(const Pixmap source, Pixmap targe
|
||||||
return toPixel(xSum);
|
return toPixel(xSum);
|
||||||
}
|
}
|
||||||
|
|
||||||
static if (mode == SamplingMode.dual) {
|
static if (directionY == up) {
|
||||||
InterPixel[2] xSums = [[0, 0, 0, 0], [0, 0, 0, 0]];
|
InterPixel[2] xSums = [[0, 0, 0, 0], [0, 0, 0, 0]];
|
||||||
|
|
||||||
() @trusted {
|
() @trusted {
|
||||||
|
@ -3393,7 +3387,7 @@ private void scaleToImpl(ScalingFilter filter)(const Pixmap source, Pixmap targe
|
||||||
return xSums;
|
return xSums;
|
||||||
}
|
}
|
||||||
|
|
||||||
static if (mode == SamplingMode.multi) {
|
static if (directionY == down) {
|
||||||
auto ySum = foreachLine(delegate(const Point posLine) {
|
auto ySum = foreachLine(delegate(const Point posLine) {
|
||||||
InterPixel xSum = [0, 0, 0, 0];
|
InterPixel xSum = [0, 0, 0, 0];
|
||||||
|
|
||||||
|
@ -3425,15 +3419,15 @@ private void scaleToImpl(ScalingFilter filter)(const Pixmap source, Pixmap targe
|
||||||
|
|
||||||
// ======== Interpolate Y ========
|
// ======== Interpolate Y ========
|
||||||
static if (directionY == none) {
|
static if (directionY == none) {
|
||||||
const Pixel tmp = sampleX!(SamplingMode.single)();
|
const Pixel tmp = sampleX();
|
||||||
pxInt = tmp;
|
pxInt = tmp;
|
||||||
}
|
}
|
||||||
static if (directionY == down) {
|
static if (directionY == down) {
|
||||||
const InterPixel tmp = sampleX!(SamplingMode.multi)();
|
const InterPixel tmp = sampleX();
|
||||||
pxInt = toPixel(tmp);
|
pxInt = toPixel(tmp);
|
||||||
}
|
}
|
||||||
static if (directionY == up) {
|
static if (directionY == up) {
|
||||||
const InterPixel[2] xSums = sampleX!(SamplingMode.dual)();
|
const InterPixel[2] xSums = sampleX();
|
||||||
foreach (immutable ib, ref c; pxInt.components) {
|
foreach (immutable ib, ref c; pxInt.components) {
|
||||||
ulong ySum = 0;
|
ulong ySum = 0;
|
||||||
ySum += ((() @trusted => xSums[idxT].ptr[ib])() * weightsY[idxT]);
|
ySum += ((() @trusted => xSums[idxT].ptr[ib])() * weightsY[idxT]);
|
||||||
|
|
Loading…
Reference in New Issue