Describes a display mode and whether the display mode supports stereo.
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;
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.
DXGI_MODE_DESC1 is identical to DXGI_MODE_DESC except that DXGI_MODE_DESC1 includes the Stereo member.
Header: Declared in dxgi1_2.h.