From 3ca675223a495f7d0a9d2130b8d88d9c5c79747e Mon Sep 17 00:00:00 2001 From: gdk Date: Tue, 19 Nov 2019 11:41:45 -0300 Subject: Remove TranslatorConfig struct --- Ryujinx.Graphics.Shader/ShaderConfig.cs | 3 --- 1 file changed, 3 deletions(-) (limited to 'Ryujinx.Graphics.Shader/ShaderConfig.cs') 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; } -- cgit v1.2.3