Skip to content

Commit e6d7af0

Browse files
Fix permissions
1 parent 7766dea commit e6d7af0

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

src/ImageSharp/PixelFormats/PixelAlphaCompositionMode.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ namespace SixLabors.ImageSharp.PixelFormats
99
public enum PixelAlphaCompositionMode
1010
{
1111
/// <summary>
12-
/// returns the destination over the source.
12+
/// Returns the destination over the source.
1313
/// </summary>
1414
SrcOver = 0,
1515

1616
/// <summary>
17-
/// returns the source colors.
17+
/// Returns the source colors.
1818
/// </summary>
1919
Src,
2020

2121
/// <summary>
22-
/// returns the source over the destination.
22+
/// Returns the source over the destination.
2323
/// </summary>
2424
SrcAtop,
2525

src/ImageSharp/PixelFormats/PixelBlenders/DefaultPixelBlenders.Generated.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ namespace SixLabors.ImageSharp.PixelFormats.PixelBlenders
2222
/// Note there are faster functions for when the backdrop color is known
2323
/// to be opaque
2424
/// </remarks>
25-
public static class DefaultPixelBlenders<TPixel>
25+
internal static class DefaultPixelBlenders<TPixel>
2626
where TPixel : struct, IPixel<TPixel>
2727
{
2828

src/ImageSharp/PixelFormats/PixelBlenders/DefaultPixelBlenders.Generated.tt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ namespace SixLabors.ImageSharp.PixelFormats.PixelBlenders
3232
/// Note there are faster functions for when the backdrop color is known
3333
/// to be opaque
3434
/// </remarks>
35-
public static class DefaultPixelBlenders<TPixel>
35+
internal static class DefaultPixelBlenders<TPixel>
3636
where TPixel : struct, IPixel<TPixel>
3737
{
3838

src/ImageSharp/PixelFormats/PixelOperations{TPixel}.PixelBenders.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Six Labors and contributors.
1+
// Copyright (c) Six Labors and contributors.
22
// Licensed under the Apache License, Version 2.0.
33

44
using SixLabors.ImageSharp.PixelFormats.PixelBlenders;
@@ -16,7 +16,7 @@ public partial class PixelOperations<TPixel>
1616
/// </summary>
1717
/// <param name="options">the blending and composition to apply</param>
1818
/// <returns>A <see cref="PixelBlender{TPixel}"/>.</returns>
19-
internal PixelBlender<TPixel> GetPixelBlender(GraphicsOptions options)
19+
public PixelBlender<TPixel> GetPixelBlender(GraphicsOptions options)
2020
{
2121
return this.GetPixelBlender(options.ColorBlendingMode, options.AlphaCompositionMode);
2222
}
@@ -27,7 +27,7 @@ internal PixelBlender<TPixel> GetPixelBlender(GraphicsOptions options)
2727
/// <param name="colorMode">The color blending mode to apply</param>
2828
/// <param name="alphaMode">The alpha composition mode to apply</param>
2929
/// <returns>A <see cref="PixelBlender{TPixel}"/>.</returns>
30-
internal virtual PixelBlender<TPixel> GetPixelBlender(PixelColorBlendingMode colorMode, PixelAlphaCompositionMode alphaMode)
30+
public virtual PixelBlender<TPixel> GetPixelBlender(PixelColorBlendingMode colorMode, PixelAlphaCompositionMode alphaMode)
3131
{
3232
switch (alphaMode)
3333
{
@@ -214,4 +214,4 @@ internal virtual PixelBlender<TPixel> GetPixelBlender(PixelColorBlendingMode col
214214
}
215215
}
216216
}
217-
}
217+
}

0 commit comments

Comments
 (0)