mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
42 lines
1.1 KiB
C#
42 lines
1.1 KiB
C#
using NvAPIWrapper.Native.Display;
|
|
using NvAPIWrapper.Native.Mosaic;
|
|
|
|
namespace NvAPIWrapper.Native.Interfaces.Mosaic
|
|
{
|
|
/// <summary>
|
|
/// Interface for all GridTopologyDisplay structures
|
|
/// </summary>
|
|
public interface IGridTopologyDisplay
|
|
{
|
|
/// <summary>
|
|
/// Gets the clone group identification; Reserved, must be 0
|
|
/// </summary>
|
|
uint CloneGroup { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the display identification
|
|
/// </summary>
|
|
uint DisplayId { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the horizontal overlap (+overlap, -gap)
|
|
/// </summary>
|
|
int OverlapX { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the vertical overlap (+overlap, -gap)
|
|
/// </summary>
|
|
int OverlapY { get; }
|
|
|
|
|
|
/// <summary>
|
|
/// Gets the type of display pixel shift
|
|
/// </summary>
|
|
PixelShiftType PixelShiftType { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the rotation of display
|
|
/// </summary>
|
|
Rotate Rotation { get; }
|
|
}
|
|
} |