Experimental GPU overclock

This commit is contained in:
Serge
2023-05-06 14:40:52 +02:00
parent 8e1099545a
commit c61f4d1608
497 changed files with 46937 additions and 232 deletions

View File

@@ -0,0 +1,48 @@
namespace NvAPIWrapper.Native.Display
{
/// <summary>
/// Possible scaling modes
/// </summary>
public enum Scaling
{
/// <summary>
/// No change
/// </summary>
Default = 0,
/// <summary>
/// Balanced - Full Screen
/// </summary>
ToClosest = 1,
/// <summary>
/// Force GPU - Full Screen
/// </summary>
ToNative = 2,
/// <summary>
/// Force GPU - Centered\No Scaling
/// </summary>
GPUScanOutToNative = 3,
/// <summary>
/// Force GPU - Aspect Ratio
/// </summary>
ToAspectScanOutToNative = 5,
/// <summary>
/// Balanced - Aspect Ratio
/// </summary>
ToAspectScanOutToClosest = 6,
/// <summary>
/// Balanced - Centered\No Scaling
/// </summary>
GPUScanOutToClosest = 7,
/// <summary>
/// Customized scaling - For future use
/// </summary>
Customized = 255
}
}