diff options
Diffstat (limited to 'Ryujinx.Graphics.Gpu/GraphicsConfig.cs')
-rw-r--r-- | Ryujinx.Graphics.Gpu/GraphicsConfig.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Gpu/GraphicsConfig.cs b/Ryujinx.Graphics.Gpu/GraphicsConfig.cs index 4d16628f..af980e77 100644 --- a/Ryujinx.Graphics.Gpu/GraphicsConfig.cs +++ b/Ryujinx.Graphics.Gpu/GraphicsConfig.cs @@ -32,5 +32,16 @@ namespace Ryujinx.Graphics.Gpu /// Enables or disables the Just-in-Time compiler for GPU Macro code. /// </summary> public static bool EnableMacroJit = true; + + /// <summary> + /// Title id of the current running game. + /// Used by the shader cache. + /// </summary> + public static string TitleId; + + /// <summary> + /// Enables or disables the shader cache. + /// </summary> + public static bool EnableShaderCache; } }
\ No newline at end of file |