2022-08-18 18:04:54 +02:00
|
|
|
|
using System.Runtime.InteropServices;
|
2021-04-07 14:19:02 +02: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;
|
|
|
|
|
}
|
|
|
|
|
}
|