Skip to content

Commit 66b2f32

Browse files
committed
Reverted Webp/WebpCommonUtils fixed-verbosity
1 parent 4b84aec commit 66b2f32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ImageSharp/Formats/Webp/WebpCommonUtils.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public static unsafe bool CheckNonOpaque(Span<Bgra32> row)
2525
ReadOnlySpan<byte> rowBytes = MemoryMarshal.AsBytes(row);
2626
int i = 0;
2727
int length = (row.Length * 4) - 3;
28-
fixed (byte* src = &MemoryMarshal.GetReference(rowBytes))
28+
fixed (byte* src = rowBytes)
2929
{
3030
var alphaMaskVector256 = Vector256.Create(0, 0, 0, 255, 0, 0, 0, 255, 0, 0, 0, 255, 0, 0, 0, 255, 0, 0, 0, 255, 0, 0, 0, 255, 0, 0, 0, 255, 0, 0, 0, 255);
3131
Vector256<byte> all0x80Vector256 = Vector256.Create((byte)0x80).AsByte();

0 commit comments

Comments
 (0)