2022-08-18 16:04:54 +00:00
|
|
|
|
using System.Runtime.InteropServices;
|
2021-04-07 12:19:02 +00:00
|
|
|
|
|
|
|
|
|
namespace Ryujinx.Common.GraphicsDriver.NVAPI
|
|
|
|
|
{
|
|
|
|
|
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
|
|
|
|
unsafe struct NvdrsProfile
|
|
|
|
|
{
|
|
|
|
|
public uint Version;
|
|
|
|
|
public NvapiUnicodeString ProfileName;
|
|
|
|
|
public uint GpuSupport;
|
|
|
|
|
public uint IsPredefined;
|
|
|
|
|
public uint NumOfApps;
|
|
|
|
|
public uint NumOfSettings;
|
|
|
|
|
}
|
|
|
|
|
}
|