mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
23 lines
529 B
C#
23 lines
529 B
C#
namespace NvAPIWrapper.Native.Display
|
|
{
|
|
/// <summary>
|
|
/// Contains possible AVI video content modes
|
|
/// </summary>
|
|
public enum InfoFrameVideoITC : uint
|
|
{
|
|
/// <summary>
|
|
/// Normal video content (Consumer Electronics)
|
|
/// </summary>
|
|
VideoContent = 0,
|
|
|
|
/// <summary>
|
|
/// Information Technology content
|
|
/// </summary>
|
|
ITContent,
|
|
|
|
/// <summary>
|
|
/// Auto (Unspecified)
|
|
/// </summary>
|
|
Auto = 3
|
|
}
|
|
} |