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:
26
app/NvAPIWrapper/Native/Mosaic/DisplayTopologyWarning.cs
Normal file
26
app/NvAPIWrapper/Native/Mosaic/DisplayTopologyWarning.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
|
||||
namespace NvAPIWrapper.Native.Mosaic
|
||||
{
|
||||
/// <summary>
|
||||
/// Possible display problems in a topology validation process
|
||||
/// </summary>
|
||||
[Flags]
|
||||
public enum DisplayTopologyWarning : uint
|
||||
{
|
||||
/// <summary>
|
||||
/// No warning
|
||||
/// </summary>
|
||||
NoWarning = 0,
|
||||
|
||||
/// <summary>
|
||||
/// Display position is problematic
|
||||
/// </summary>
|
||||
DisplayPosition = 1,
|
||||
|
||||
/// <summary>
|
||||
/// Driver reload is required for this changes
|
||||
/// </summary>
|
||||
DriverReloadRequired = 2
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user