Browse Source

Fix whitespace

af/merge-core
James Jackson-South 9 years ago
parent
commit
6eb93e0288
  1. 4
      src/ImageSharp/Processing/Processors/Transforms/ResizeProcessor.cs

4
src/ImageSharp/Processing/Processors/Transforms/ResizeProcessor.cs

@ -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);

Loading…
Cancel
Save