diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2019-12-31 17:08:20 -0300 |
|---|---|---|
| committer | Thog <thog@protonmail.com> | 2020-01-09 02:13:00 +0100 |
| commit | f7bcc884e46805f4dcda4fc7d7e7bccb2a3ac316 (patch) | |
| tree | 2a96d49db5bfb9e2e18b2bce1287a2f6dce8abc1 /Ryujinx.Graphics.Gpu/GraphicsConfig.cs | |
| parent | 4a4e2f7c72301ba1dfb207f00c7c2fa0e9674223 (diff) | |
Add XML documentation to Ryujinx.Graphics.Gpu
Diffstat (limited to 'Ryujinx.Graphics.Gpu/GraphicsConfig.cs')
| -rw-r--r-- | Ryujinx.Graphics.Gpu/GraphicsConfig.cs | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/Ryujinx.Graphics.Gpu/GraphicsConfig.cs b/Ryujinx.Graphics.Gpu/GraphicsConfig.cs index c5eaa0b3..468d3a34 100644 --- a/Ryujinx.Graphics.Gpu/GraphicsConfig.cs +++ b/Ryujinx.Graphics.Gpu/GraphicsConfig.cs @@ -1,12 +1,21 @@ namespace Ryujinx.Graphics.Gpu { + /// <summary> + /// General GPU and graphics configuration. + /// </summary> public static class GraphicsConfig { + /// <summary> + /// Base directory used to write shader code dumps. + /// Set to null to disable code dumping. + /// </summary> public static string ShadersDumpPath; + /// <summary> + /// Fast GPU time calculates the internal GPU time ticks as if the GPU was capable of + /// processing commands almost instantly, instead of using the host timer. + /// This can avoid lower resolution on some games when GPU performance is poor. + /// </summary> public static bool FastGpuTime = true; - - public static bool DisableTUpdate; - public static bool DisableBUpdate; } }
\ No newline at end of file |
