aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.GAL/ShaderBindings.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.Graphics.GAL/ShaderBindings.cs')
-rw-r--r--src/Ryujinx.Graphics.GAL/ShaderBindings.cs24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/Ryujinx.Graphics.GAL/ShaderBindings.cs b/src/Ryujinx.Graphics.GAL/ShaderBindings.cs
deleted file mode 100644
index 6ab29382..00000000
--- a/src/Ryujinx.Graphics.GAL/ShaderBindings.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-using System.Collections.Generic;
-
-namespace Ryujinx.Graphics.GAL
-{
- public readonly struct ShaderBindings
- {
- public IReadOnlyCollection<int> UniformBufferBindings { get; }
- public IReadOnlyCollection<int> StorageBufferBindings { get; }
- public IReadOnlyCollection<int> TextureBindings { get; }
- public IReadOnlyCollection<int> ImageBindings { get; }
-
- public ShaderBindings(
- IReadOnlyCollection<int> uniformBufferBindings,
- IReadOnlyCollection<int> storageBufferBindings,
- IReadOnlyCollection<int> textureBindings,
- IReadOnlyCollection<int> imageBindings)
- {
- UniformBufferBindings = uniformBufferBindings;
- StorageBufferBindings = storageBufferBindings;
- TextureBindings = textureBindings;
- ImageBindings = imageBindings;
- }
- }
-}