diff options
author | Mary <mary@mary.zone> | 2022-12-01 23:06:55 +0100 |
---|---|---|
committer | Mary <mary@mary.zone> | 2022-12-01 23:06:55 +0100 |
commit | d692a9b83ebb1c0303f91adaa22cd67852f2386f (patch) | |
tree | 0c2a8c829f199526eb6c55e4c8af2b6c23d29d0b /Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardRendererBase.cs | |
parent | 9677ddaa5d8424604bdbf17496f8a878855a118d (diff) |
Revert "nuget: bump SixLabors.ImageSharp from 1.0.4 to 2.1.3 (#3976)"1.1.409
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.
Diffstat (limited to 'Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardRendererBase.cs')
-rw-r--r-- | Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardRendererBase.cs | 4 |
1 files changed, 2 insertions, 2 deletions
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); |