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/SetStorageBuffersCommand.cs           | 23 ----------------------
 1 file changed, 23 deletions(-)
 delete mode 100644 Ryujinx.Graphics.GAL/Multithreading/Commands/SetStorageBuffersCommand.cs

(limited to 'Ryujinx.Graphics.GAL/Multithreading/Commands/SetStorageBuffersCommand.cs')

diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetStorageBuffersCommand.cs b/Ryujinx.Graphics.GAL/Multithreading/Commands/SetStorageBuffersCommand.cs
deleted file mode 100644
index 6ecb0989..00000000
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetStorageBuffersCommand.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-using Ryujinx.Graphics.GAL.Multithreading.Model;
-using System;
-
-namespace Ryujinx.Graphics.GAL.Multithreading.Commands
-{
-    struct SetStorageBuffersCommand : IGALCommand, IGALCommand<SetStorageBuffersCommand>
-    {
-        public CommandType CommandType => CommandType.SetStorageBuffers;
-        private SpanRef<BufferAssignment> _buffers;
-
-        public void Set(SpanRef<BufferAssignment> buffers)
-        {
-            _buffers = buffers;
-        }
-
-        public static void Run(ref SetStorageBuffersCommand command, ThreadedRenderer threaded, IRenderer renderer)
-        {
-            Span<BufferAssignment> buffers = command._buffers.Get(threaded);
-            renderer.Pipeline.SetStorageBuffers(threaded.Buffers.MapBufferRanges(buffers));
-            command._buffers.Dispose(threaded);
-        }
-    }
-}
-- 
cgit v1.2.3-70-g09d2