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.cs13
1 files changed, 12 insertions, 1 deletions
diff --git a/Ryujinx.Graphics.GAL/ShaderInfo.cs b/Ryujinx.Graphics.GAL/ShaderInfo.cs
index 0c187e06..b4c87117 100644
--- a/Ryujinx.Graphics.GAL/ShaderInfo.cs
+++ b/Ryujinx.Graphics.GAL/ShaderInfo.cs
@@ -3,10 +3,21 @@ namespace Ryujinx.Graphics.GAL
public struct ShaderInfo
{
public int FragmentOutputMap { get; }
+ public ProgramPipelineState? State { get; }
+ public bool FromCache { get; set; }
- public ShaderInfo(int fragmentOutputMap)
+ public ShaderInfo(int fragmentOutputMap, ProgramPipelineState state, bool fromCache = false)
{
FragmentOutputMap = fragmentOutputMap;
+ State = state;
+ FromCache = fromCache;
+ }
+
+ public ShaderInfo(int fragmentOutputMap, bool fromCache = false)
+ {
+ FragmentOutputMap = fragmentOutputMap;
+ State = null;
+ FromCache = fromCache;
}
}
} \ No newline at end of file