using System;
namespace NvAPIWrapper.Native.Mosaic
{
///
/// These bits are used to describe the validity of a topo
///
[Flags]
public enum TopologyValidity : uint
{
///
/// The topology is valid
///
Valid = 0,
///
/// Not enough SLI GPUs were found to fill the entire topology. PhysicalGPUHandle will be null for these.
///
MissingGPU = 1,
///
/// Not enough displays were found to fill the entire topology. Output identification will be 0 for these.
///
MissingDisplay = 2,
///
/// The topology is only possible with displays of the same output type. Check output identifications to make sure they
/// are all CRTs, or all DFPs.
///
MixedDisplayTypes = 4
}
}