mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
28 lines
755 B
C#
28 lines
755 B
C#
using System.Runtime.InteropServices;
|
|
using NvAPIWrapper.Native.Attributes;
|
|
using NvAPIWrapper.Native.General.Structures;
|
|
using NvAPIWrapper.Native.Interfaces;
|
|
|
|
namespace NvAPIWrapper.Native.GPU.Structures
|
|
{
|
|
/// <summary>
|
|
/// Contains information regarding a GPU architecture
|
|
/// </summary>
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
[StructureVersion(2)]
|
|
public struct PrivateArchitectInfoV2 : IInitializable
|
|
{
|
|
internal StructureVersion _Version;
|
|
internal uint _Unknown1;
|
|
internal uint _Unknown2;
|
|
internal uint _Revision;
|
|
|
|
/// <summary>
|
|
/// Gets the GPU revision
|
|
/// </summary>
|
|
public uint Revision
|
|
{
|
|
get => _Revision;
|
|
}
|
|
}
|
|
} |