DXGI_MODE_DESC1 structure (dxgi1_2.h)
Describes a display mode and whether the display mode supports stereo.
Syntax
typedef struct DXGI_MODE_DESC1 {
UINT Width;
UINT Height;
DXGI_RATIONAL RefreshRate;
DXGI_FORMAT Format;
DXGI_MODE_SCANLINE_ORDER ScanlineOrdering;
DXGI_MODE_SCALING Scaling;
BOOL Stereo;
} DXGI_MODE_DESC1;
Members
Width
A value that describes the resolution width.
Height
A value that describes the resolution height.
RefreshRate
A DXGI_RATIONAL structure that describes the refresh rate in hertz.
Format
A DXGI_FORMAT-typed value that describes the display format.
ScanlineOrdering
A DXGI_MODE_SCANLINE_ORDER-typed value that describes the scan-line drawing mode.
Scaling
A DXGI_MODE_SCALING-typed value that describes the scaling mode.
Stereo
Specifies whether the full-screen display mode is stereo. TRUE if stereo; otherwise, FALSE.
Remarks
DXGI_MODE_DESC1 is identical to DXGI_MODE_DESC except that DXGI_MODE_DESC1 includes the Stereo member.
This structure is used by the GetDisplayModeList1 and FindClosestMatchingMode1 methods.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows 8 and Platform Update for Windows 7 [desktop apps | UWP apps] |
Minimum supported server | Windows Server 2012 and Platform Update for Windows Server 2008 R2 [desktop apps | UWP apps] |
Header | dxgi1_2.h |