|
|
|
@ -162,7 +162,7 @@ namespace ImageSharp.Processing.Processors |
|
|
|
for (int x = 0; x < width; x++) |
|
|
|
{ |
|
|
|
// Destination color components
|
|
|
|
Vector4 destination = window.ComputeWeightedColumnSum(firstPassPixels,x, sourceY); |
|
|
|
Vector4 destination = window.ComputeWeightedColumnSum(firstPassPixels, x, sourceY); |
|
|
|
destination = destination.Compress(); |
|
|
|
TPixel d = default(TPixel); |
|
|
|
d.PackFromVector4(destination); |
|
|
|
@ -174,7 +174,7 @@ namespace ImageSharp.Processing.Processors |
|
|
|
for (int x = 0; x < width; x++) |
|
|
|
{ |
|
|
|
// Destination color components
|
|
|
|
Vector4 destination = window.ComputeWeightedColumnSum(firstPassPixels,x, sourceY); |
|
|
|
Vector4 destination = window.ComputeWeightedColumnSum(firstPassPixels, x, sourceY); |
|
|
|
|
|
|
|
TPixel d = default(TPixel); |
|
|
|
d.PackFromVector4(destination); |
|
|
|
|