Skip to content

Commit 7cecea9

Browse files
Revert breaking change
1 parent f63ad84 commit 7cecea9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/ImageSharp/Formats/Webp/WebpBlendMethod.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ namespace SixLabors.ImageSharp.Formats.Webp;
88
/// </summary>
99
public enum WebpBlendMethod
1010
{
11-
/// <summary>
12-
/// Do not blend. After disposing of the previous frame,
13-
/// render the current frame on the canvas by overwriting the rectangle covered by the current frame.
14-
/// </summary>
15-
Source = 1,
16-
1711
/// <summary>
1812
/// Use alpha blending. After disposing of the previous frame, render the current frame on the canvas using alpha-blending.
1913
/// If the current frame does not have an alpha channel, assume alpha value of 255, effectively replacing the rectangle.
2014
/// </summary>
2115
Over = 0,
16+
17+
/// <summary>
18+
/// Do not blend. After disposing of the previous frame,
19+
/// render the current frame on the canvas by overwriting the rectangle covered by the current frame.
20+
/// </summary>
21+
Source = 1,
2222
}

0 commit comments

Comments
 (0)