NvdrsProfile.cs 409 B

12345678910111213141516
  1. using System;
  2. using System.Runtime.InteropServices;
  3. namespace Ryujinx.Common.GraphicsDriver.NVAPI
  4. {
  5. [StructLayout(LayoutKind.Sequential, Pack = 1)]
  6. unsafe struct NvdrsProfile
  7. {
  8. public uint Version;
  9. public NvapiUnicodeString ProfileName;
  10. public uint GpuSupport;
  11. public uint IsPredefined;
  12. public uint NumOfApps;
  13. public uint NumOfSettings;
  14. }
  15. }