aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.GAL/ShaderInfo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.GAL/ShaderInfo.cs')
-rw-r--r--Ryujinx.Graphics.GAL/ShaderInfo.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.GAL/ShaderInfo.cs b/Ryujinx.Graphics.GAL/ShaderInfo.cs
new file mode 100644
index 00000000..0c187e06
--- /dev/null
+++ b/Ryujinx.Graphics.GAL/ShaderInfo.cs
@@ -0,0 +1,12 @@
+namespace Ryujinx.Graphics.GAL
+{
+ public struct ShaderInfo
+ {
+ public int FragmentOutputMap { get; }
+
+ public ShaderInfo(int fragmentOutputMap)
+ {
+ FragmentOutputMap = fragmentOutputMap;
+ }
+ }
+} \ No newline at end of file