From d692a9b83ebb1c0303f91adaa22cd67852f2386f Mon Sep 17 00:00:00 2001 From: Mary <mary@mary.zone> Date: Thu, 1 Dec 2022 23:06:55 +0100 Subject: Revert "nuget: bump SixLabors.ImageSharp from 1.0.4 to 2.1.3 (#3976)" This reverts commit 9677ddaa5d8424604bdbf17496f8a878855a118d. SixLabors.ImageShar switched to a shady and vague license starting with 2.x without mentioning it on their changelog. As a result we are staying on 1.x (licensed under Apache-2) and will seak an alternative package. --- .../HOS/Applets/SoftwareKeyboard/SoftwareKeyboardRendererBase.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardRendererBase.cs') diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardRendererBase.cs b/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardRendererBase.cs index 09f81f0f..6c0955ec 100644 --- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardRendererBase.cs +++ b/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardRendererBase.cs @@ -549,12 +549,12 @@ namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard // Convert the pixel format used in the image to the one used in the Switch surface. - if (!_surface.DangerousTryGetSinglePixelMemory(out Memory<Argb32> pixels)) + if (!_surface.TryGetSinglePixelSpan(out Span<Argb32> pixels)) { return; } - _bufferData = MemoryMarshal.AsBytes(pixels.Span).ToArray(); + _bufferData = MemoryMarshal.AsBytes(pixels).ToArray(); Span<uint> dataConvert = MemoryMarshal.Cast<byte, uint>(_bufferData); Debug.Assert(_bufferData.Length == _surfaceInfo.Size); -- cgit v1.2.3-70-g09d2