namespace Ryujinx.Graphics.Gpu { /// /// General GPU and graphics configuration. /// public static class GraphicsConfig { /// /// Base directory used to write shader code dumps. /// Set to null to disable code dumping. /// public static string ShadersDumpPath; /// /// 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. /// public static bool FastGpuTime = true; } }