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:
@@ -0,0 +1,33 @@
|
||||
namespace NvAPIWrapper.Native.Display
|
||||
{
|
||||
/// <summary>
|
||||
/// Contains possible values for the AVI non uniform picture scaling
|
||||
/// </summary>
|
||||
public enum InfoFrameVideoNonUniformPictureScaling : uint
|
||||
{
|
||||
/// <summary>
|
||||
/// No data available
|
||||
/// </summary>
|
||||
NoData = 0,
|
||||
|
||||
/// <summary>
|
||||
/// Horizontal scaling
|
||||
/// </summary>
|
||||
Horizontal,
|
||||
|
||||
/// <summary>
|
||||
/// Vertical scaling
|
||||
/// </summary>
|
||||
Vertical,
|
||||
|
||||
/// <summary>
|
||||
/// Scaling in both directions
|
||||
/// </summary>
|
||||
Both,
|
||||
|
||||
/// <summary>
|
||||
/// Auto (Unspecified)
|
||||
/// </summary>
|
||||
Auto = 7
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user