Skip to content

Commit

Permalink
Merge pull request #1777 from SixLabors/js/v2-builds
Browse files Browse the repository at this point in the history
Update Infrastructure Files and Base Build Number for V2
  • Loading branch information
JimBobSquarePants authored Oct 7, 2021
2 parents d81c511 + 944d8f9 commit 424d4f9
Show file tree
Hide file tree
Showing 388 changed files with 514 additions and 652 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -223,3 +223,7 @@ artifacts/
**/Images/ReferenceOutput
**/Images/Input/MemoryStress
.DS_Store

#lfs
hooks/**
lfs/**
2 changes: 1 addition & 1 deletion shared-infrastructure
1 change: 0 additions & 1 deletion src/ImageSharp/Advanced/ParallelExecutionSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

using System;
using System.Threading.Tasks;

using SixLabors.ImageSharp.Memory;

namespace SixLabors.ImageSharp.Advanced
Expand Down
3 changes: 1 addition & 2 deletions src/ImageSharp/Color/Color.Conversions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

using System.Numerics;
using System.Runtime.CompilerServices;

using SixLabors.ImageSharp.PixelFormats;

namespace SixLabors.ImageSharp
Expand Down Expand Up @@ -95,4 +94,4 @@ public readonly partial struct Color
[MethodImpl(InliningOptions.ShortMethod)]
internal Vector4 ToVector4() => this.data.ToVector4();
}
}
}
2 changes: 1 addition & 1 deletion src/ImageSharp/Color/Color.WebSafePalette.cs
Original file line number Diff line number Diff line change
Expand Up @@ -163,4 +163,4 @@ private static Color[] CreateWebSafePalette() => new[]
YellowGreen
};
}
}
}
1 change: 0 additions & 1 deletion src/ImageSharp/Color/Color.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
using System.Numerics;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

using SixLabors.ImageSharp.PixelFormats;

namespace SixLabors.ImageSharp
Expand Down
2 changes: 1 addition & 1 deletion src/ImageSharp/ColorSpaces/CieLab.cs
Original file line number Diff line number Diff line change
Expand Up @@ -136,4 +136,4 @@ public bool Equals(CieLab other)
&& this.WhitePoint.Equals(other.WhitePoint);
}
}
}
}
2 changes: 1 addition & 1 deletion src/ImageSharp/ColorSpaces/CieLch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -162,4 +162,4 @@ public float Saturation()
return result;
}
}
}
}
2 changes: 1 addition & 1 deletion src/ImageSharp/ColorSpaces/CieLchuv.cs
Original file line number Diff line number Diff line change
Expand Up @@ -157,4 +157,4 @@ public float Saturation()
return result;
}
}
}
}
2 changes: 1 addition & 1 deletion src/ImageSharp/ColorSpaces/CieLuv.cs
Original file line number Diff line number Diff line change
Expand Up @@ -137,4 +137,4 @@ public bool Equals(CieLuv other)
&& this.WhitePoint.Equals(other.WhitePoint);
}
}
}
}
2 changes: 1 addition & 1 deletion src/ImageSharp/ColorSpaces/CieXyy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -100,4 +100,4 @@ public bool Equals(CieXyy other)
&& this.Yl.Equals(other.Yl);
}
}
}
}
2 changes: 1 addition & 1 deletion src/ImageSharp/ColorSpaces/CieXyz.cs
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,4 @@ public bool Equals(CieXyz other)
&& this.Z.Equals(other.Z);
}
}
}
}
2 changes: 1 addition & 1 deletion src/ImageSharp/ColorSpaces/Cmyk.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,4 +108,4 @@ public bool Equals(Cmyk other)
&& this.K.Equals(other.K);
}
}
}
}
2 changes: 1 addition & 1 deletion src/ImageSharp/ColorSpaces/Companding/GammaCompanding.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ public static class GammaCompanding
[MethodImpl(InliningOptions.ShortMethod)]
public static float Compress(float channel, float gamma) => MathF.Pow(channel, 1 / gamma);
}
}
}
2 changes: 1 addition & 1 deletion src/ImageSharp/ColorSpaces/Companding/Rec2020Companding.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ public static float Expand(float channel)
public static float Compress(float channel)
=> channel < Beta ? 4.5F * channel : (Alpha * MathF.Pow(channel, 0.45F)) - AlphaMinusOne;
}
}
}
2 changes: 1 addition & 1 deletion src/ImageSharp/ColorSpaces/Companding/Rec709Companding.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ public static float Expand(float channel)
public static float Compress(float channel)
=> channel < 0.018F ? 4.5F * channel : (1.099F * MathF.Pow(channel, 0.45F)) - 0.099F;
}
}
}
2 changes: 1 addition & 1 deletion src/ImageSharp/ColorSpaces/Conversion/CieConstants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ internal static class CieConstants
/// </summary>
public const float Kappa = 903.2963F;
}
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Six Labors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.

using System;
Expand Down Expand Up @@ -429,4 +429,4 @@ public HunterLab ToHunterLab(in YCbCr color)
return this.ToHunterLab(xyzColor);
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -424,4 +424,4 @@ public Lms ToLms(in YCbCr color)
return this.ToLms(xyzColor);
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ public CieLab Convert(in CieLch input)
return new CieLab(l, a, b, input.WhitePoint);
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@ public CieXyz Convert(in CieXyy input)
return new CieXyz(x, y, z);
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ public static float ComputeKb(CieXyz whitePoint)
return 100F * (70F / 218.11F) * (whitePoint.Y + whitePoint.Z);
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,4 @@ public CieXyz Convert(in Lms input)
return new CieXyz(vector);
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@ public CieLab Convert(in CieXyz input)
return new CieLab(l, a, b, this.LabWhitePoint);
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -85,4 +85,4 @@ private static float ComputeUp(in CieXyz input)
private static float ComputeVp(in CieXyz input)
=> (9 * input.Y) / (input.X + (15 * input.Y) + (3 * input.Z));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,4 @@ public HunterLab Convert(in CieXyz input)
return new HunterLab(l, a, b, this.HunterLabWhitePoint);
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ public LinearRgb Convert(in CieXyz input)
return new LinearRgb(vector, this.TargetWorkingSpace);
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ public Cmyk Convert(in Rgb input)
return new Cmyk(cmy.X, cmy.Y, cmy.Z, k.X);
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@ public YCbCr Convert(in Rgb input)
return new YCbCr(y, cb, cr);
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ void Transform(
CieXyz sourceWhitePoint,
in CieXyz destinationWhitePoint);
}
}
}
2 changes: 1 addition & 1 deletion src/ImageSharp/ColorSpaces/Hsl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -101,4 +101,4 @@ public bool Equals(Hsl other)
&& this.L.Equals(other.L);
}
}
}
}
2 changes: 1 addition & 1 deletion src/ImageSharp/ColorSpaces/Hsv.cs
Original file line number Diff line number Diff line change
Expand Up @@ -99,4 +99,4 @@ public bool Equals(Hsv other)
&& this.V.Equals(other.V);
}
}
}
}
2 changes: 1 addition & 1 deletion src/ImageSharp/ColorSpaces/HunterLab.cs
Original file line number Diff line number Diff line change
Expand Up @@ -135,4 +135,4 @@ public bool Equals(HunterLab other)
&& this.WhitePoint.Equals(other.WhitePoint);
}
}
}
}
2 changes: 1 addition & 1 deletion src/ImageSharp/ColorSpaces/Illuminants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,4 @@ public static class Illuminants
/// </summary>
public static readonly CieXyz F11 = new CieXyz(1.00962F, 1F, 0.64350F);
}
}
}
2 changes: 1 addition & 1 deletion src/ImageSharp/ColorSpaces/Lms.cs
Original file line number Diff line number Diff line change
Expand Up @@ -104,4 +104,4 @@ public bool Equals(Lms other)
&& this.S.Equals(other.S);
}
}
}
}
2 changes: 1 addition & 1 deletion src/ImageSharp/Common/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ internal static class Constants
/// </summary>
public static readonly float EpsilonSquared = Epsilon * Epsilon;
}
}
}
4 changes: 1 addition & 3 deletions src/ImageSharp/Common/Helpers/SimdUtils.Pack.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using SixLabors.ImageSharp.PixelFormats;

#if SUPPORTS_RUNTIME_INTRINSICS
using System.Runtime.Intrinsics;
using System.Runtime.Intrinsics.X86;
#endif

Expand Down Expand Up @@ -203,4 +201,4 @@ private static void PackFromRgbPlanesRemainder(
}
}
}
}
}
Loading

0 comments on commit 424d4f9

Please sign in to comment.