Skip to content

Commit f6d24ed

Browse files
Update src/ImageSharp/Formats/Webp/AlphaDecoder.cs
Co-authored-by: Günther Foidl <[email protected]>
1 parent 223f647 commit f6d24ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ImageSharp/Formats/Webp/AlphaDecoder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ private static void ColorIndexInverseTransformAlpha(
311311

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

0 commit comments

Comments
 (0)