GraphicsConfig.cs 728 B

123456789101112131415161718192021
  1. namespace Ryujinx.Graphics.Gpu
  2. {
  3. /// <summary>
  4. /// General GPU and graphics configuration.
  5. /// </summary>
  6. public static class GraphicsConfig
  7. {
  8. /// <summary>
  9. /// Base directory used to write shader code dumps.
  10. /// Set to null to disable code dumping.
  11. /// </summary>
  12. public static string ShadersDumpPath;
  13. /// <summary>
  14. /// Fast GPU time calculates the internal GPU time ticks as if the GPU was capable of
  15. /// processing commands almost instantly, instead of using the host timer.
  16. /// This can avoid lower resolution on some games when GPU performance is poor.
  17. /// </summary>
  18. public static bool FastGpuTime = true;
  19. }
  20. }