1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-29 11:06:47 -06:00

16 lines
395 B
C#
Raw Normal View History

using System.Runtime.InteropServices;
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;
}
}