From fed16da8ceaef7363bf6a77748b41ba94b0be783 Mon Sep 17 00:00:00 2001 From: Darth Affe Date: Sun, 21 Jul 2024 21:51:43 +0200 Subject: [PATCH] Added nullable annotation for all generated files --- HPPH.Generators/ColorSortSourceGenerator.cs | 4 ++++ HPPH.Generators/Features/Average.cs | 4 ++++ HPPH.Generators/Features/Colors.cs | 8 ++++++++ HPPH.Generators/Features/MinMax.cs | 8 ++++++++ HPPH.Generators/Features/Quantize.cs | 4 ++++ HPPH.Generators/Features/Sum.cs | 8 ++++++++ .../ColorSortGeneratorAttribute.g.cs | 4 +++- .../PixelHelper.g.cs | 4 +++- .../HPPH.Generators.ColorSourceGenerator/ColorABGR.g.cs | 4 +++- .../HPPH.Generators.ColorSourceGenerator/ColorARGB.g.cs | 4 +++- .../HPPH.Generators.ColorSourceGenerator/ColorBGR.g.cs | 4 +++- .../HPPH.Generators.ColorSourceGenerator/ColorBGRA.g.cs | 4 +++- .../ColorFormatABGR.Average.g.cs | 4 +++- .../ColorFormatABGR.MinMax.g.cs | 4 +++- .../ColorFormatABGR.Quantize.g.cs | 4 +++- .../ColorFormatABGR.Sum.g.cs | 4 +++- .../ColorFormatABGR.g.cs | 4 +++- .../ColorFormatARGB.Average.g.cs | 4 +++- .../ColorFormatARGB.MinMax.g.cs | 4 +++- .../ColorFormatARGB.Quantize.g.cs | 4 +++- .../ColorFormatARGB.Sum.g.cs | 4 +++- .../ColorFormatARGB.g.cs | 4 +++- .../ColorFormatBGR.Average.g.cs | 4 +++- .../ColorFormatBGR.MinMax.g.cs | 4 +++- .../ColorFormatBGR.Quantize.g.cs | 4 +++- .../ColorFormatBGR.Sum.g.cs | 4 +++- .../ColorFormatBGR.g.cs | 4 +++- .../ColorFormatBGRA.Average.g.cs | 4 +++- .../ColorFormatBGRA.MinMax.g.cs | 4 +++- .../ColorFormatBGRA.Quantize.g.cs | 4 +++- .../ColorFormatBGRA.Sum.g.cs | 4 +++- .../ColorFormatBGRA.g.cs | 4 +++- .../ColorFormatRGB.Average.g.cs | 4 +++- .../ColorFormatRGB.MinMax.g.cs | 4 +++- .../ColorFormatRGB.Quantize.g.cs | 4 +++- .../ColorFormatRGB.Sum.g.cs | 4 +++- .../ColorFormatRGB.g.cs | 4 +++- .../ColorFormatRGBA.Average.g.cs | 4 +++- .../ColorFormatRGBA.MinMax.g.cs | 4 +++- .../ColorFormatRGBA.Quantize.g.cs | 4 +++- .../ColorFormatRGBA.Sum.g.cs | 4 +++- .../ColorFormatRGBA.g.cs | 4 +++- .../HPPH.Generators.ColorSourceGenerator/ColorRGB.g.cs | 4 +++- .../HPPH.Generators.ColorSourceGenerator/ColorRGBA.g.cs | 4 +++- .../IColorFormat.Average.g.cs | 4 +++- .../IColorFormat.Instances.g.cs | 4 +++- .../IColorFormat.MinMax.g.cs | 4 +++- .../IColorFormat.Quantize.g.cs | 4 +++- .../IColorFormat.Sum.g.cs | 4 +++- .../HPPH.Generators.ColorSourceGenerator/MinMaxABGR.g.cs | 4 +++- .../HPPH.Generators.ColorSourceGenerator/MinMaxARGB.g.cs | 4 +++- .../HPPH.Generators.ColorSourceGenerator/MinMaxBGR.g.cs | 4 +++- .../HPPH.Generators.ColorSourceGenerator/MinMaxBGRA.g.cs | 4 +++- .../HPPH.Generators.ColorSourceGenerator/MinMaxRGB.g.cs | 4 +++- .../HPPH.Generators.ColorSourceGenerator/MinMaxRGBA.g.cs | 4 +++- .../HPPH.Generators.ColorSourceGenerator/SumABGR.g.cs | 4 +++- .../HPPH.Generators.ColorSourceGenerator/SumARGB.g.cs | 4 +++- .../HPPH.Generators.ColorSourceGenerator/SumBGR.g.cs | 4 +++- .../HPPH.Generators.ColorSourceGenerator/SumBGRA.g.cs | 4 +++- .../HPPH.Generators.ColorSourceGenerator/SumRGB.g.cs | 4 +++- .../HPPH.Generators.ColorSourceGenerator/SumRGBA.g.cs | 4 +++- 61 files changed, 201 insertions(+), 55 deletions(-) diff --git a/HPPH.Generators/ColorSortSourceGenerator.cs b/HPPH.Generators/ColorSortSourceGenerator.cs index 40384b1..5e6553c 100644 --- a/HPPH.Generators/ColorSortSourceGenerator.cs +++ b/HPPH.Generators/ColorSortSourceGenerator.cs @@ -15,6 +15,8 @@ public class ColorSortSourceGenerator : IIncrementalGenerator #region Properties & Fields private const string SORT_GENERATOR_ATTRIBUTE_SOURCE = """ + #nullable enable + namespace HPPH; [AttributeUsage(AttributeTargets.Method)] @@ -79,6 +81,8 @@ public class ColorSortSourceGenerator : IIncrementalGenerator foreach (KeyValuePair<(string @namespace, string @class, string classModifier), string> data in sourceMapping) { context.AddSource($"{data.Key.@class}.g.cs", SourceText.From($$""" + #nullable enable + using System.Buffers; namespace {{data.Key.@namespace}}; diff --git a/HPPH.Generators/Features/Average.cs b/HPPH.Generators/Features/Average.cs index 0441165..7cbd884 100644 --- a/HPPH.Generators/Features/Average.cs +++ b/HPPH.Generators/Features/Average.cs @@ -18,6 +18,8 @@ internal class Average : IGeneratorFeature private static string GenerateColorFormatAverage(ColorFormatData colorFormat) { return $$""" + #nullable enable + using System.Runtime.InteropServices; namespace HPPH; @@ -36,6 +38,8 @@ internal class Average : IGeneratorFeature private static string GenerateColorFormatInterfaceAverage() { return """ + #nullable enable + namespace HPPH; public partial interface IColorFormat diff --git a/HPPH.Generators/Features/Colors.cs b/HPPH.Generators/Features/Colors.cs index 9a6da84..574e4b4 100644 --- a/HPPH.Generators/Features/Colors.cs +++ b/HPPH.Generators/Features/Colors.cs @@ -25,6 +25,8 @@ internal class Colors : IGeneratorFeature => colorFormat.Bpp switch { 3 => $$""" + #nullable enable + // ReSharper disable ConvertToAutoProperty // ReSharper disable ConvertToAutoPropertyWhenPossible // ReSharper disable ReplaceWithPrimaryConstructorParameter @@ -89,6 +91,8 @@ internal class Colors : IGeneratorFeature """, 4 => $$""" + #nullable enable + // ReSharper disable ConvertToAutoProperty // ReSharper disable ConvertToAutoPropertyWhenPossible // ReSharper disable ReplaceWithPrimaryConstructorParameter @@ -159,6 +163,8 @@ internal class Colors : IGeneratorFeature private static string GenerateColorFormatCode(ColorFormatData colorFormat) { return $$""" + #nullable enable + namespace HPPH; public sealed partial class ColorFormat{{colorFormat.Format}} : IColorFormat @@ -188,6 +194,8 @@ internal class Colors : IGeneratorFeature { StringBuilder sb = new(); sb.AppendLine(""" + #nullable enable + namespace HPPH; public partial interface IColorFormat diff --git a/HPPH.Generators/Features/MinMax.cs b/HPPH.Generators/Features/MinMax.cs index c84aeda..cc1639c 100644 --- a/HPPH.Generators/Features/MinMax.cs +++ b/HPPH.Generators/Features/MinMax.cs @@ -20,6 +20,8 @@ internal class MinMax : IGeneratorFeature => colorFormat.Bpp switch { 3 => $$""" + #nullable enable + // ReSharper disable ConvertToAutoProperty // ReSharper disable ReplaceWithPrimaryConstructorParameter @@ -73,6 +75,8 @@ internal class MinMax : IGeneratorFeature """, 4 => $$""" + #nullable enable + // ReSharper disable ConvertToAutoProperty // ReSharper disable ReplaceWithPrimaryConstructorParameter @@ -133,6 +137,8 @@ internal class MinMax : IGeneratorFeature private static string GenerateColorFormatMinMax(ColorFormatData colorFormat) { return $$""" + #nullable enable + using System.Runtime.InteropServices; namespace HPPH; @@ -151,6 +157,8 @@ internal class MinMax : IGeneratorFeature private static string GenerateColorFormatInterfaceMinMax() { return """ + #nullable enable + namespace HPPH; public partial interface IColorFormat diff --git a/HPPH.Generators/Features/Quantize.cs b/HPPH.Generators/Features/Quantize.cs index 7f37d7c..5291e68 100644 --- a/HPPH.Generators/Features/Quantize.cs +++ b/HPPH.Generators/Features/Quantize.cs @@ -18,6 +18,8 @@ internal class Quantize : IGeneratorFeature private static string GenerateColorFormatQuantize(ColorFormatData colorFormat) { return $$""" + #nullable enable + using System.Runtime.InteropServices; namespace HPPH; @@ -56,6 +58,8 @@ internal class Quantize : IGeneratorFeature private static string GenerateColorFormatInterfaceQuantize() { return """ + #nullable enable + namespace HPPH; public partial interface IColorFormat diff --git a/HPPH.Generators/Features/Sum.cs b/HPPH.Generators/Features/Sum.cs index 0b869bb..cd12f2d 100644 --- a/HPPH.Generators/Features/Sum.cs +++ b/HPPH.Generators/Features/Sum.cs @@ -20,6 +20,8 @@ internal class Sum : IGeneratorFeature => colorFormat.Bpp switch { 3 => $$""" + #nullable enable + // ReSharper disable ConvertToAutoProperty // ReSharper disable ConvertToAutoPropertyWhenPossible // ReSharper disable ReplaceWithPrimaryConstructorParameter @@ -58,6 +60,8 @@ internal class Sum : IGeneratorFeature """, 4 => $$""" + #nullable enable + // ReSharper disable ConvertToAutoProperty // ReSharper disable ConvertToAutoPropertyWhenPossible // ReSharper disable ReplaceWithPrimaryConstructorParameter @@ -100,6 +104,8 @@ internal class Sum : IGeneratorFeature private static string GenerateColorFormatSum(ColorFormatData colorFormat) { return $$""" + #nullable enable + using System.Runtime.InteropServices; namespace HPPH; @@ -118,6 +124,8 @@ internal class Sum : IGeneratorFeature private static string GenerateColorFormatInterfaceSum() { return """ + #nullable enable + namespace HPPH; public partial interface IColorFormat diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSortSourceGenerator/ColorSortGeneratorAttribute.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSortSourceGenerator/ColorSortGeneratorAttribute.g.cs index 4ae6eb7..fdc9f9d 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSortSourceGenerator/ColorSortGeneratorAttribute.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSortSourceGenerator/ColorSortGeneratorAttribute.g.cs @@ -1,4 +1,6 @@ -namespace HPPH; +#nullable enable + +namespace HPPH; [AttributeUsage(AttributeTargets.Method)] internal class ColorSortGeneratorAttribute(string dataTypeName, string sortValueName) : Attribute diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSortSourceGenerator/PixelHelper.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSortSourceGenerator/PixelHelper.g.cs index 6e12764..13e26ee 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSortSourceGenerator/PixelHelper.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSortSourceGenerator/PixelHelper.g.cs @@ -1,4 +1,6 @@ -using System.Buffers; +#nullable enable + +using System.Buffers; namespace HPPH; diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorABGR.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorABGR.g.cs index 749268b..386bb16 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorABGR.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorABGR.g.cs @@ -1,4 +1,6 @@ -// ReSharper disable ConvertToAutoProperty +#nullable enable + +// ReSharper disable ConvertToAutoProperty // ReSharper disable ConvertToAutoPropertyWhenPossible // ReSharper disable ReplaceWithPrimaryConstructorParameter diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorARGB.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorARGB.g.cs index 04eef35..14107ce 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorARGB.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorARGB.g.cs @@ -1,4 +1,6 @@ -// ReSharper disable ConvertToAutoProperty +#nullable enable + +// ReSharper disable ConvertToAutoProperty // ReSharper disable ConvertToAutoPropertyWhenPossible // ReSharper disable ReplaceWithPrimaryConstructorParameter diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorBGR.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorBGR.g.cs index 72080cc..625b4c1 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorBGR.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorBGR.g.cs @@ -1,4 +1,6 @@ -// ReSharper disable ConvertToAutoProperty +#nullable enable + +// ReSharper disable ConvertToAutoProperty // ReSharper disable ConvertToAutoPropertyWhenPossible // ReSharper disable ReplaceWithPrimaryConstructorParameter diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorBGRA.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorBGRA.g.cs index 8c449e5..4042792 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorBGRA.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorBGRA.g.cs @@ -1,4 +1,6 @@ -// ReSharper disable ConvertToAutoProperty +#nullable enable + +// ReSharper disable ConvertToAutoProperty // ReSharper disable ConvertToAutoPropertyWhenPossible // ReSharper disable ReplaceWithPrimaryConstructorParameter diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatABGR.Average.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatABGR.Average.g.cs index 89256c8..55a5962 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatABGR.Average.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatABGR.Average.g.cs @@ -1,4 +1,6 @@ -using System.Runtime.InteropServices; +#nullable enable + +using System.Runtime.InteropServices; namespace HPPH; diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatABGR.MinMax.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatABGR.MinMax.g.cs index bfa8909..7d073ea 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatABGR.MinMax.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatABGR.MinMax.g.cs @@ -1,4 +1,6 @@ -using System.Runtime.InteropServices; +#nullable enable + +using System.Runtime.InteropServices; namespace HPPH; diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatABGR.Quantize.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatABGR.Quantize.g.cs index 9625456..6b34694 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatABGR.Quantize.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatABGR.Quantize.g.cs @@ -1,4 +1,6 @@ -using System.Runtime.InteropServices; +#nullable enable + +using System.Runtime.InteropServices; namespace HPPH; diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatABGR.Sum.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatABGR.Sum.g.cs index 8747e73..6f302dc 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatABGR.Sum.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatABGR.Sum.g.cs @@ -1,4 +1,6 @@ -using System.Runtime.InteropServices; +#nullable enable + +using System.Runtime.InteropServices; namespace HPPH; diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatABGR.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatABGR.g.cs index 9275a29..3644f8c 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatABGR.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatABGR.g.cs @@ -1,4 +1,6 @@ -namespace HPPH; +#nullable enable + +namespace HPPH; public sealed partial class ColorFormatABGR : IColorFormat { diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatARGB.Average.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatARGB.Average.g.cs index 75a4c40..13e1805 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatARGB.Average.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatARGB.Average.g.cs @@ -1,4 +1,6 @@ -using System.Runtime.InteropServices; +#nullable enable + +using System.Runtime.InteropServices; namespace HPPH; diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatARGB.MinMax.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatARGB.MinMax.g.cs index 37d06a3..ca9d201 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatARGB.MinMax.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatARGB.MinMax.g.cs @@ -1,4 +1,6 @@ -using System.Runtime.InteropServices; +#nullable enable + +using System.Runtime.InteropServices; namespace HPPH; diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatARGB.Quantize.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatARGB.Quantize.g.cs index c6be434..0eb99c5 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatARGB.Quantize.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatARGB.Quantize.g.cs @@ -1,4 +1,6 @@ -using System.Runtime.InteropServices; +#nullable enable + +using System.Runtime.InteropServices; namespace HPPH; diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatARGB.Sum.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatARGB.Sum.g.cs index 0275eff..f9dd682 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatARGB.Sum.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatARGB.Sum.g.cs @@ -1,4 +1,6 @@ -using System.Runtime.InteropServices; +#nullable enable + +using System.Runtime.InteropServices; namespace HPPH; diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatARGB.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatARGB.g.cs index 1e71c0f..19d9357 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatARGB.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatARGB.g.cs @@ -1,4 +1,6 @@ -namespace HPPH; +#nullable enable + +namespace HPPH; public sealed partial class ColorFormatARGB : IColorFormat { diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGR.Average.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGR.Average.g.cs index 932d2c7..3e9163d 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGR.Average.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGR.Average.g.cs @@ -1,4 +1,6 @@ -using System.Runtime.InteropServices; +#nullable enable + +using System.Runtime.InteropServices; namespace HPPH; diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGR.MinMax.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGR.MinMax.g.cs index 2276eb2..a2857c1 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGR.MinMax.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGR.MinMax.g.cs @@ -1,4 +1,6 @@ -using System.Runtime.InteropServices; +#nullable enable + +using System.Runtime.InteropServices; namespace HPPH; diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGR.Quantize.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGR.Quantize.g.cs index 093b3db..8f0bf43 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGR.Quantize.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGR.Quantize.g.cs @@ -1,4 +1,6 @@ -using System.Runtime.InteropServices; +#nullable enable + +using System.Runtime.InteropServices; namespace HPPH; diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGR.Sum.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGR.Sum.g.cs index 4d46ad0..0655069 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGR.Sum.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGR.Sum.g.cs @@ -1,4 +1,6 @@ -using System.Runtime.InteropServices; +#nullable enable + +using System.Runtime.InteropServices; namespace HPPH; diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGR.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGR.g.cs index 3a0fc8d..e895511 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGR.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGR.g.cs @@ -1,4 +1,6 @@ -namespace HPPH; +#nullable enable + +namespace HPPH; public sealed partial class ColorFormatBGR : IColorFormat { diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGRA.Average.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGRA.Average.g.cs index 2226df5..7f46451 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGRA.Average.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGRA.Average.g.cs @@ -1,4 +1,6 @@ -using System.Runtime.InteropServices; +#nullable enable + +using System.Runtime.InteropServices; namespace HPPH; diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGRA.MinMax.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGRA.MinMax.g.cs index d954759..89a0845 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGRA.MinMax.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGRA.MinMax.g.cs @@ -1,4 +1,6 @@ -using System.Runtime.InteropServices; +#nullable enable + +using System.Runtime.InteropServices; namespace HPPH; diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGRA.Quantize.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGRA.Quantize.g.cs index 5c1e92d..0b68384 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGRA.Quantize.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGRA.Quantize.g.cs @@ -1,4 +1,6 @@ -using System.Runtime.InteropServices; +#nullable enable + +using System.Runtime.InteropServices; namespace HPPH; diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGRA.Sum.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGRA.Sum.g.cs index e4f3926..61bcff4 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGRA.Sum.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGRA.Sum.g.cs @@ -1,4 +1,6 @@ -using System.Runtime.InteropServices; +#nullable enable + +using System.Runtime.InteropServices; namespace HPPH; diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGRA.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGRA.g.cs index 69cf37b..a3c290e 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGRA.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatBGRA.g.cs @@ -1,4 +1,6 @@ -namespace HPPH; +#nullable enable + +namespace HPPH; public sealed partial class ColorFormatBGRA : IColorFormat { diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGB.Average.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGB.Average.g.cs index 9891fb8..2d5b369 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGB.Average.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGB.Average.g.cs @@ -1,4 +1,6 @@ -using System.Runtime.InteropServices; +#nullable enable + +using System.Runtime.InteropServices; namespace HPPH; diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGB.MinMax.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGB.MinMax.g.cs index 31c5360..ab55ee1 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGB.MinMax.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGB.MinMax.g.cs @@ -1,4 +1,6 @@ -using System.Runtime.InteropServices; +#nullable enable + +using System.Runtime.InteropServices; namespace HPPH; diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGB.Quantize.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGB.Quantize.g.cs index fd1e93d..c7dcf7c 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGB.Quantize.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGB.Quantize.g.cs @@ -1,4 +1,6 @@ -using System.Runtime.InteropServices; +#nullable enable + +using System.Runtime.InteropServices; namespace HPPH; diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGB.Sum.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGB.Sum.g.cs index 70a9b12..960115d 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGB.Sum.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGB.Sum.g.cs @@ -1,4 +1,6 @@ -using System.Runtime.InteropServices; +#nullable enable + +using System.Runtime.InteropServices; namespace HPPH; diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGB.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGB.g.cs index 67d0832..e6c1852 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGB.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGB.g.cs @@ -1,4 +1,6 @@ -namespace HPPH; +#nullable enable + +namespace HPPH; public sealed partial class ColorFormatRGB : IColorFormat { diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGBA.Average.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGBA.Average.g.cs index 609b087..0146e21 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGBA.Average.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGBA.Average.g.cs @@ -1,4 +1,6 @@ -using System.Runtime.InteropServices; +#nullable enable + +using System.Runtime.InteropServices; namespace HPPH; diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGBA.MinMax.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGBA.MinMax.g.cs index 381cb6b..7e07522 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGBA.MinMax.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGBA.MinMax.g.cs @@ -1,4 +1,6 @@ -using System.Runtime.InteropServices; +#nullable enable + +using System.Runtime.InteropServices; namespace HPPH; diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGBA.Quantize.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGBA.Quantize.g.cs index 4e2514f..f5f4826 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGBA.Quantize.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGBA.Quantize.g.cs @@ -1,4 +1,6 @@ -using System.Runtime.InteropServices; +#nullable enable + +using System.Runtime.InteropServices; namespace HPPH; diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGBA.Sum.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGBA.Sum.g.cs index 1ffb1ff..b9ea3ee 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGBA.Sum.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGBA.Sum.g.cs @@ -1,4 +1,6 @@ -using System.Runtime.InteropServices; +#nullable enable + +using System.Runtime.InteropServices; namespace HPPH; diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGBA.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGBA.g.cs index 02e9a73..a3a44b0 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGBA.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorFormatRGBA.g.cs @@ -1,4 +1,6 @@ -namespace HPPH; +#nullable enable + +namespace HPPH; public sealed partial class ColorFormatRGBA : IColorFormat { diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorRGB.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorRGB.g.cs index 0115749..63b3596 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorRGB.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorRGB.g.cs @@ -1,4 +1,6 @@ -// ReSharper disable ConvertToAutoProperty +#nullable enable + +// ReSharper disable ConvertToAutoProperty // ReSharper disable ConvertToAutoPropertyWhenPossible // ReSharper disable ReplaceWithPrimaryConstructorParameter diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorRGBA.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorRGBA.g.cs index c30acf5..bd47a06 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorRGBA.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/ColorRGBA.g.cs @@ -1,4 +1,6 @@ -// ReSharper disable ConvertToAutoProperty +#nullable enable + +// ReSharper disable ConvertToAutoProperty // ReSharper disable ConvertToAutoPropertyWhenPossible // ReSharper disable ReplaceWithPrimaryConstructorParameter diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/IColorFormat.Average.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/IColorFormat.Average.g.cs index 9227055..d4adfe4 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/IColorFormat.Average.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/IColorFormat.Average.g.cs @@ -1,4 +1,6 @@ -namespace HPPH; +#nullable enable + +namespace HPPH; public partial interface IColorFormat { diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/IColorFormat.Instances.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/IColorFormat.Instances.g.cs index 49328d2..4533389 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/IColorFormat.Instances.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/IColorFormat.Instances.g.cs @@ -1,4 +1,6 @@ -namespace HPPH; +#nullable enable + +namespace HPPH; public partial interface IColorFormat { diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/IColorFormat.MinMax.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/IColorFormat.MinMax.g.cs index 98aa3ea..35116a0 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/IColorFormat.MinMax.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/IColorFormat.MinMax.g.cs @@ -1,4 +1,6 @@ -namespace HPPH; +#nullable enable + +namespace HPPH; public partial interface IColorFormat { diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/IColorFormat.Quantize.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/IColorFormat.Quantize.g.cs index a17d940..4616ac7 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/IColorFormat.Quantize.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/IColorFormat.Quantize.g.cs @@ -1,4 +1,6 @@ -namespace HPPH; +#nullable enable + +namespace HPPH; public partial interface IColorFormat { diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/IColorFormat.Sum.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/IColorFormat.Sum.g.cs index d05861e..d924d82 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/IColorFormat.Sum.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/IColorFormat.Sum.g.cs @@ -1,4 +1,6 @@ -namespace HPPH; +#nullable enable + +namespace HPPH; public partial interface IColorFormat { diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/MinMaxABGR.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/MinMaxABGR.g.cs index 9fb0a3f..a884abc 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/MinMaxABGR.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/MinMaxABGR.g.cs @@ -1,4 +1,6 @@ -// ReSharper disable ConvertToAutoProperty +#nullable enable + +// ReSharper disable ConvertToAutoProperty // ReSharper disable ReplaceWithPrimaryConstructorParameter using System.Diagnostics; diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/MinMaxARGB.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/MinMaxARGB.g.cs index 4065e99..951d518 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/MinMaxARGB.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/MinMaxARGB.g.cs @@ -1,4 +1,6 @@ -// ReSharper disable ConvertToAutoProperty +#nullable enable + +// ReSharper disable ConvertToAutoProperty // ReSharper disable ReplaceWithPrimaryConstructorParameter using System.Diagnostics; diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/MinMaxBGR.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/MinMaxBGR.g.cs index ef4d4e7..ca2b504 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/MinMaxBGR.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/MinMaxBGR.g.cs @@ -1,4 +1,6 @@ -// ReSharper disable ConvertToAutoProperty +#nullable enable + +// ReSharper disable ConvertToAutoProperty // ReSharper disable ReplaceWithPrimaryConstructorParameter using System.Diagnostics; diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/MinMaxBGRA.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/MinMaxBGRA.g.cs index ab76312..b642140 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/MinMaxBGRA.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/MinMaxBGRA.g.cs @@ -1,4 +1,6 @@ -// ReSharper disable ConvertToAutoProperty +#nullable enable + +// ReSharper disable ConvertToAutoProperty // ReSharper disable ReplaceWithPrimaryConstructorParameter using System.Diagnostics; diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/MinMaxRGB.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/MinMaxRGB.g.cs index 0c5e9ce..43a9d6d 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/MinMaxRGB.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/MinMaxRGB.g.cs @@ -1,4 +1,6 @@ -// ReSharper disable ConvertToAutoProperty +#nullable enable + +// ReSharper disable ConvertToAutoProperty // ReSharper disable ReplaceWithPrimaryConstructorParameter using System.Diagnostics; diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/MinMaxRGBA.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/MinMaxRGBA.g.cs index 44d1c4a..810931e 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/MinMaxRGBA.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/MinMaxRGBA.g.cs @@ -1,4 +1,6 @@ -// ReSharper disable ConvertToAutoProperty +#nullable enable + +// ReSharper disable ConvertToAutoProperty // ReSharper disable ReplaceWithPrimaryConstructorParameter using System.Diagnostics; diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/SumABGR.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/SumABGR.g.cs index 5330cbf..2917745 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/SumABGR.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/SumABGR.g.cs @@ -1,4 +1,6 @@ -// ReSharper disable ConvertToAutoProperty +#nullable enable + +// ReSharper disable ConvertToAutoProperty // ReSharper disable ConvertToAutoPropertyWhenPossible // ReSharper disable ReplaceWithPrimaryConstructorParameter diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/SumARGB.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/SumARGB.g.cs index 351ec90..8e9b3df 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/SumARGB.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/SumARGB.g.cs @@ -1,4 +1,6 @@ -// ReSharper disable ConvertToAutoProperty +#nullable enable + +// ReSharper disable ConvertToAutoProperty // ReSharper disable ConvertToAutoPropertyWhenPossible // ReSharper disable ReplaceWithPrimaryConstructorParameter diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/SumBGR.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/SumBGR.g.cs index df489ce..51c3380 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/SumBGR.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/SumBGR.g.cs @@ -1,4 +1,6 @@ -// ReSharper disable ConvertToAutoProperty +#nullable enable + +// ReSharper disable ConvertToAutoProperty // ReSharper disable ConvertToAutoPropertyWhenPossible // ReSharper disable ReplaceWithPrimaryConstructorParameter diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/SumBGRA.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/SumBGRA.g.cs index 2e5cf13..2b8d9dc 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/SumBGRA.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/SumBGRA.g.cs @@ -1,4 +1,6 @@ -// ReSharper disable ConvertToAutoProperty +#nullable enable + +// ReSharper disable ConvertToAutoProperty // ReSharper disable ConvertToAutoPropertyWhenPossible // ReSharper disable ReplaceWithPrimaryConstructorParameter diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/SumRGB.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/SumRGB.g.cs index c852c37..4b9d527 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/SumRGB.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/SumRGB.g.cs @@ -1,4 +1,6 @@ -// ReSharper disable ConvertToAutoProperty +#nullable enable + +// ReSharper disable ConvertToAutoProperty // ReSharper disable ConvertToAutoPropertyWhenPossible // ReSharper disable ReplaceWithPrimaryConstructorParameter diff --git a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/SumRGBA.g.cs b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/SumRGBA.g.cs index 7799ff2..53722de 100644 --- a/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/SumRGBA.g.cs +++ b/HPPH/Generated/HPPH.Generators/HPPH.Generators.ColorSourceGenerator/SumRGBA.g.cs @@ -1,4 +1,6 @@ -// ReSharper disable ConvertToAutoProperty +#nullable enable + +// ReSharper disable ConvertToAutoProperty // ReSharper disable ConvertToAutoPropertyWhenPossible // ReSharper disable ReplaceWithPrimaryConstructorParameter