From ce7835694f5e6af7c4dc7b2e34e99de471c245b7 Mon Sep 17 00:00:00 2001 From: James Jackson-South Date: Mon, 12 Jan 2026 21:03:28 +1000 Subject: [PATCH] Update Rgb.cs --- src/ImageSharp/ColorProfiles/Rgb.cs | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/ImageSharp/ColorProfiles/Rgb.cs b/src/ImageSharp/ColorProfiles/Rgb.cs index 73c7611985..42e502592c 100644 --- a/src/ImageSharp/ColorProfiles/Rgb.cs +++ b/src/ImageSharp/ColorProfiles/Rgb.cs @@ -100,17 +100,6 @@ public readonly struct Rgb : IProfileConnectingSpace public Vector4 ToScaledVector4() => new(this.AsVector3Unsafe(), 1F); - /// - /// Expands the color into a generic ("scaled") representation - /// with values scaled and usually clamped between 0 and 1. - /// The vector components are typically expanded in least to greatest significance order. - /// - /// The alpha component. - /// The . - [MethodImpl(MethodImplOptions.AggressiveInlining)] - public Vector4 ToScaledVector4(float alpha) - => new(this.AsVector3Unsafe(), 1F); - /// public static void ToScaledVector4(ReadOnlySpan source, Span destination) {