aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Common/GraphicsDriver/NVAPI/NvdrsSetting.cs
diff options
context:
space:
mode:
authorTSR Berry <20988865+TSRBerry@users.noreply.github.com>2023-04-08 01:22:00 +0200
committerMary <thog@protonmail.com>2023-04-27 23:51:14 +0200
commitcee712105850ac3385cd0091a923438167433f9f (patch)
tree4a5274b21d8b7f938c0d0ce18736d3f2993b11b1 /Ryujinx.Common/GraphicsDriver/NVAPI/NvdrsSetting.cs
parentcd124bda587ef09668a971fa1cac1c3f0cfc9f21 (diff)
Move solution and projects to src
Diffstat (limited to 'Ryujinx.Common/GraphicsDriver/NVAPI/NvdrsSetting.cs')
-rw-r--r--Ryujinx.Common/GraphicsDriver/NVAPI/NvdrsSetting.cs49
1 files changed, 0 insertions, 49 deletions
diff --git a/Ryujinx.Common/GraphicsDriver/NVAPI/NvdrsSetting.cs b/Ryujinx.Common/GraphicsDriver/NVAPI/NvdrsSetting.cs
deleted file mode 100644
index ac188b35..00000000
--- a/Ryujinx.Common/GraphicsDriver/NVAPI/NvdrsSetting.cs
+++ /dev/null
@@ -1,49 +0,0 @@
-using System.Runtime.InteropServices;
-
-namespace Ryujinx.Common.GraphicsDriver.NVAPI
-{
- enum NvdrsSettingType : uint
- {
- NvdrsDwordType,
- NvdrsBinaryType,
- NvdrsStringType,
- NvdrsWstringType,
- }
-
- enum NvdrsSettingLocation : uint
- {
- NvdrsCurrentProfileLocation,
- NvdrsGlobalProfileLocation,
- NvdrsBaseProfileLocation,
- NvdrsDefaultProfileLocation,
- }
-
- [StructLayout(LayoutKind.Explicit, Size = 0x3020)]
- unsafe struct NvdrsSetting
- {
- [FieldOffset(0x0)]
- public uint Version;
- [FieldOffset(0x4)]
- public NvapiUnicodeString SettingName;
- [FieldOffset(0x1004)]
- public Nvapi SettingId;
- [FieldOffset(0x1008)]
- public NvdrsSettingType SettingType;
- [FieldOffset(0x100C)]
- public NvdrsSettingLocation SettingLocation;
- [FieldOffset(0x1010)]
- public uint IsCurrentPredefined;
- [FieldOffset(0x1014)]
- public uint IsPredefinedValid;
-
- [FieldOffset(0x1018)]
- public uint PredefinedValue;
- [FieldOffset(0x1018)]
- public NvapiUnicodeString PredefinedString;
-
- [FieldOffset(0x201C)]
- public uint CurrentValue;
- [FieldOffset(0x201C)]
- public NvapiUnicodeString CurrentString;
- }
-}