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:
28
app/NvAPIWrapper/Native/Display/InfoFrameVideoScanInfo.cs
Normal file
28
app/NvAPIWrapper/Native/Display/InfoFrameVideoScanInfo.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
namespace NvAPIWrapper.Native.Display
|
||||
{
|
||||
/// <summary>
|
||||
/// Contains possible values for AVI scan information
|
||||
/// </summary>
|
||||
public enum InfoFrameVideoScanInfo : uint
|
||||
{
|
||||
/// <summary>
|
||||
/// No data available
|
||||
/// </summary>
|
||||
NoData = 0,
|
||||
|
||||
/// <summary>
|
||||
/// Overscan
|
||||
/// </summary>
|
||||
OverScan,
|
||||
|
||||
/// <summary>
|
||||
/// Underscan
|
||||
/// </summary>
|
||||
UnderScan,
|
||||
|
||||
/// <summary>
|
||||
/// Auto (Unspecified)
|
||||
/// </summary>
|
||||
Auto = 7
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user