aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.Shader/CodeGen/Spirv/ImageDeclaration.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.Graphics.Shader/CodeGen/Spirv/ImageDeclaration.cs')
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Spirv/ImageDeclaration.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/Ryujinx.Graphics.Shader/CodeGen/Spirv/ImageDeclaration.cs b/src/Ryujinx.Graphics.Shader/CodeGen/Spirv/ImageDeclaration.cs
new file mode 100644
index 00000000..1e0aee73
--- /dev/null
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Spirv/ImageDeclaration.cs
@@ -0,0 +1,20 @@
+using Spv.Generator;
+
+namespace Ryujinx.Graphics.Shader.CodeGen.Spirv
+{
+ readonly struct ImageDeclaration
+ {
+ public readonly Instruction ImageType;
+ public readonly Instruction ImagePointerType;
+ public readonly Instruction Image;
+ public readonly bool IsIndexed;
+
+ public ImageDeclaration(Instruction imageType, Instruction imagePointerType, Instruction image, bool isIndexed)
+ {
+ ImageType = imageType;
+ ImagePointerType = imagePointerType;
+ Image = image;
+ IsIndexed = isIndexed;
+ }
+ }
+}