mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
Experimental GPU overclock
This commit is contained in:
67
app/NvAPIWrapper/Native/GPU/GPUMemoryMaker.cs
Normal file
67
app/NvAPIWrapper/Native/GPU/GPUMemoryMaker.cs
Normal file
@@ -0,0 +1,67 @@
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
|
||||
namespace NvAPIWrapper.Native.GPU
|
||||
{
|
||||
/// <summary>
|
||||
/// Holds a list of known memory makers
|
||||
/// </summary>
|
||||
[SuppressMessage("ReSharper", "IdentifierTypo")]
|
||||
// ReSharper disable CommentTypo
|
||||
public enum GPUMemoryMaker : uint
|
||||
{
|
||||
/// <summary>
|
||||
/// Unknown memory maker
|
||||
/// </summary>
|
||||
Unknown = 0,
|
||||
|
||||
/// <summary>
|
||||
/// Samsung Group
|
||||
/// </summary>
|
||||
Samsung,
|
||||
|
||||
/// <summary>
|
||||
/// Qimonda AG
|
||||
/// </summary>
|
||||
Qimonda,
|
||||
|
||||
/// <summary>
|
||||
/// Elpida Memory, Inc.
|
||||
/// </summary>
|
||||
Elpida,
|
||||
|
||||
/// <summary>
|
||||
/// Etron Technology, Inc.
|
||||
/// </summary>
|
||||
Etron,
|
||||
|
||||
/// <summary>
|
||||
/// Nanya Technology Corporation
|
||||
/// </summary>
|
||||
Nanya,
|
||||
|
||||
/// <summary>
|
||||
/// SK Hynix
|
||||
/// </summary>
|
||||
Hynix,
|
||||
|
||||
/// <summary>
|
||||
/// Mosel Vitelic Corporation
|
||||
/// </summary>
|
||||
Mosel,
|
||||
|
||||
/// <summary>
|
||||
/// Winbond Electronics Corporation
|
||||
/// </summary>
|
||||
Winbond,
|
||||
|
||||
/// <summary>
|
||||
/// Elite Semiconductor Memory Technology Inc.
|
||||
/// </summary>
|
||||
Elite,
|
||||
|
||||
/// <summary>
|
||||
/// Micron Technology, Inc.
|
||||
/// </summary>
|
||||
Micron
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user