namespace NvAPIWrapper.Native.Interfaces.Mosaic
{
///
/// Interface for all DisplaySettings structures
///
public interface IDisplaySettings
{
///
/// Bits per pixel
///
int BitsPerPixel { get; }
///
/// Display frequency
///
int Frequency { get; }
///
/// Display frequency in x1k
///
uint FrequencyInMillihertz { get; }
///
/// Per-display height
///
int Height { get; }
///
/// Per-display width
///
int Width { get; }
}
}