From cee712105850ac3385cd0091a923438167433f9f Mon Sep 17 00:00:00 2001 From: TSR Berry <20988865+TSRBerry@users.noreply.github.com> Date: Sat, 8 Apr 2023 01:22:00 +0200 Subject: Move solution and projects to src --- .../Commands/Texture/TextureGetDataCommand.cs | 26 ---------------------- 1 file changed, 26 deletions(-) delete mode 100644 Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureGetDataCommand.cs (limited to 'Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureGetDataCommand.cs') diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureGetDataCommand.cs b/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureGetDataCommand.cs deleted file mode 100644 index 91320d45..00000000 --- a/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureGetDataCommand.cs +++ /dev/null @@ -1,26 +0,0 @@ -using Ryujinx.Graphics.GAL.Multithreading.Model; -using Ryujinx.Graphics.GAL.Multithreading.Resources; -using System; - -namespace Ryujinx.Graphics.GAL.Multithreading.Commands.Texture -{ - struct TextureGetDataCommand : IGALCommand, IGALCommand - { - public CommandType CommandType => CommandType.TextureGetData; - private TableRef _texture; - private TableRef>> _result; - - public void Set(TableRef texture, TableRef>> result) - { - _texture = texture; - _result = result; - } - - public static void Run(ref TextureGetDataCommand command, ThreadedRenderer threaded, IRenderer renderer) - { - PinnedSpan result = command._texture.Get(threaded).Base.GetData(); - - command._result.Get(threaded).Result = result; - } - } -} -- cgit v1.2.3