aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Shader/ShaderConfig.cs
diff options
context:
space:
mode:
authorgdk <gab.dark.100@gmail.com>2019-11-19 11:41:45 -0300
committerThog <thog@protonmail.com>2020-01-09 02:13:00 +0100
commit3ca675223a495f7d0a9d2130b8d88d9c5c79747e (patch)
tree72b36c06b9429be939f084e91a942516e42165d8 /Ryujinx.Graphics.Shader/ShaderConfig.cs
parent6a8ba6d60080ca15fc25a6812998b19e63171610 (diff)
Remove TranslatorConfig struct
Diffstat (limited to 'Ryujinx.Graphics.Shader/ShaderConfig.cs')
-rw-r--r--Ryujinx.Graphics.Shader/ShaderConfig.cs3
1 files changed, 0 insertions, 3 deletions
diff --git a/Ryujinx.Graphics.Shader/ShaderConfig.cs b/Ryujinx.Graphics.Shader/ShaderConfig.cs
index 6ab4689a..3583fa64 100644
--- a/Ryujinx.Graphics.Shader/ShaderConfig.cs
+++ b/Ryujinx.Graphics.Shader/ShaderConfig.cs
@@ -8,7 +8,6 @@ namespace Ryujinx.Graphics.Shader
public TranslationFlags Flags { get; }
- public int MaxCBufferSize { get; }
public int MaxOutputVertices { get; }
public OutputTopology OutputTopology { get; }
@@ -16,13 +15,11 @@ namespace Ryujinx.Graphics.Shader
public ShaderConfig(
ShaderStage stage,
TranslationFlags flags,
- int maxCBufferSize,
int maxOutputVertices,
OutputTopology outputTopology)
{
Stage = stage;
Flags = flags;
- MaxCBufferSize = maxCBufferSize;
MaxOutputVertices = maxOutputVertices;
OutputTopology = outputTopology;
}