blob: c5eaa0b35220256e198acfc168c861dc3ecfb8d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
namespace Ryujinx.Graphics.Gpu
{
public static class GraphicsConfig
{
public static string ShadersDumpPath;
public static bool FastGpuTime = true;
public static bool DisableTUpdate;
public static bool DisableBUpdate;
}
}
|