Skip to content

Commit

Permalink
Update src/ImageSharp/Formats/Webp/AlphaDecoder.cs
Browse files Browse the repository at this point in the history
Co-authored-by: Günther Foidl <gue@korporal.at>
  • Loading branch information
JimBobSquarePants and gfoidl committed Feb 26, 2024
1 parent 223f647 commit f6d24ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ImageSharp/Formats/Webp/AlphaDecoder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ private void ExtractAlphaRows(Vp8LDecoder dec)

private static void HorizontalUnfilter(Span<byte> prev, Span<byte> input, Span<byte> dst, int width)
{
// TODO: Investigate AdvSim support for this method.
// TODO: Investigate AdvSimd support for this method.
if (Sse2.IsSupported && width >= 9)
{
dst[0] = (byte)(input[0] + (prev.IsEmpty ? 0 : prev[0]));
Expand Down

0 comments on commit f6d24ed

Please sign in to comment.