File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
src/ImageSharp/Formats/Webp Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -8,15 +8,15 @@ namespace SixLabors.ImageSharp.Formats.Webp;
8
8
/// </summary>
9
9
public enum WebpBlendMethod
10
10
{
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
-
17
11
/// <summary>
18
12
/// Use alpha blending. After disposing of the previous frame, render the current frame on the canvas using alpha-blending.
19
13
/// If the current frame does not have an alpha channel, assume alpha value of 255, effectively replacing the rectangle.
20
14
/// </summary>
21
15
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 ,
22
22
}
You can’t perform that action at this time.
0 commit comments