aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/CompileShaderCommand.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/CompileShaderCommand.cs')
-rw-r--r--Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/CompileShaderCommand.cs22
1 files changed, 0 insertions, 22 deletions
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/CompileShaderCommand.cs b/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/CompileShaderCommand.cs
deleted file mode 100644
index 2bd9725d..00000000
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/CompileShaderCommand.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-using Ryujinx.Graphics.GAL.Multithreading.Model;
-using Ryujinx.Graphics.GAL.Multithreading.Resources;
-
-namespace Ryujinx.Graphics.GAL.Multithreading.Commands.Renderer
-{
- struct CompileShaderCommand : IGALCommand
- {
- public CommandType CommandType => CommandType.CompileShader;
- private TableRef<ThreadedShader> _shader;
-
- public void Set(TableRef<ThreadedShader> shader)
- {
- _shader = shader;
- }
-
- public static void Run(ref CompileShaderCommand command, ThreadedRenderer threaded, IRenderer renderer)
- {
- ThreadedShader shader = command._shader.Get(threaded);
- shader.EnsureCreated();
- }
- }
-}