зеркало из https://github.com/mono/SkiaSharp.git
Provide Span overload for SetRectRadii (#2949)
This commit is contained in:
Родитель
9fde53e5f1
Коммит
215abb5464
|
@ -122,6 +122,12 @@ namespace SkiaSharp
|
|||
{
|
||||
if (radii == null)
|
||||
throw new ArgumentNullException (nameof (radii));
|
||||
|
||||
SetRectRadii(rect, radii.AsSpan());
|
||||
}
|
||||
|
||||
public void SetRectRadii (SKRect rect, ReadOnlySpan<SKPoint> radii)
|
||||
{
|
||||
if (radii.Length != 4)
|
||||
throw new ArgumentException ("Radii must have a length of 4.", nameof (radii));
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче