diff options
| author | gdk <gab.dark.100@gmail.com> | 2019-11-19 11:41:45 -0300 |
|---|---|---|
| committer | Thog <thog@protonmail.com> | 2020-01-09 02:13:00 +0100 |
| commit | 3ca675223a495f7d0a9d2130b8d88d9c5c79747e (patch) | |
| tree | 72b36c06b9429be939f084e91a942516e42165d8 /Ryujinx.Graphics.Shader/Translation/TranslationConfig.cs | |
| parent | 6a8ba6d60080ca15fc25a6812998b19e63171610 (diff) | |
Remove TranslatorConfig struct
Diffstat (limited to 'Ryujinx.Graphics.Shader/Translation/TranslationConfig.cs')
| -rw-r--r-- | Ryujinx.Graphics.Shader/Translation/TranslationConfig.cs | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/Ryujinx.Graphics.Shader/Translation/TranslationConfig.cs b/Ryujinx.Graphics.Shader/Translation/TranslationConfig.cs deleted file mode 100644 index e5fa6d14..00000000 --- a/Ryujinx.Graphics.Shader/Translation/TranslationConfig.cs +++ /dev/null @@ -1,25 +0,0 @@ -using System; - -namespace Ryujinx.Graphics.Shader.Translation -{ - public struct TranslationConfig - { - public int MaxCBufferSize { get; } - - public int Version { get; } - - public TranslationFlags Flags { get; } - - public TranslationConfig(int maxCBufferSize, int version, TranslationFlags flags) - { - if (maxCBufferSize <= 0) - { - throw new ArgumentOutOfRangeException(nameof(maxCBufferSize)); - } - - MaxCBufferSize = maxCBufferSize; - Version = version; - Flags = flags; - } - } -}
\ No newline at end of file |
