using NvAPIWrapper.Native.Display;
using NvAPIWrapper.Native.Mosaic;
namespace NvAPIWrapper.Native.Interfaces.Mosaic
{
///
/// Interface for all GridTopologyDisplay structures
///
public interface IGridTopologyDisplay
{
///
/// Gets the clone group identification; Reserved, must be 0
///
uint CloneGroup { get; }
///
/// Gets the display identification
///
uint DisplayId { get; }
///
/// Gets the horizontal overlap (+overlap, -gap)
///
int OverlapX { get; }
///
/// Gets the vertical overlap (+overlap, -gap)
///
int OverlapY { get; }
///
/// Gets the type of display pixel shift
///
PixelShiftType PixelShiftType { get; }
///
/// Gets the rotation of display
///
Rotate Rotation { get; }
}
}