mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
23 lines
449 B
C#
23 lines
449 B
C#
namespace NvAPIWrapper.Native.Stereo
|
|
{
|
|
/// <summary>
|
|
/// Holds a list of valid flags for the swap chain mode
|
|
/// </summary>
|
|
public enum StereoSwapChainMode
|
|
{
|
|
/// <summary>
|
|
/// Automatic
|
|
/// </summary>
|
|
Default = 0,
|
|
|
|
/// <summary>
|
|
/// Stereo
|
|
/// </summary>
|
|
Stereo,
|
|
|
|
/// <summary>
|
|
/// Mono
|
|
/// </summary>
|
|
Mono
|
|
}
|
|
} |