mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
18 lines
406 B
C#
18 lines
406 B
C#
namespace NvAPIWrapper.Native.Stereo
|
|
{
|
|
/// <summary>
|
|
/// Holds a list of valid values for the stereo activation process
|
|
/// </summary>
|
|
public enum StereoActivationFlag
|
|
{
|
|
/// <summary>
|
|
/// Immediate activation
|
|
/// </summary>
|
|
Immediate = 0,
|
|
|
|
/// <summary>
|
|
/// Delayed activation
|
|
/// </summary>
|
|
Delayed
|
|
}
|
|
} |