DXGI_MODE_DESC1 structure
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
|
Minimum supported client |
Windows 8 and Platform Update for Windows 7 [desktop apps | Windows Store apps] |
|---|---|
|
Minimum supported server |
Windows Server 2012 and Platform Update for Windows Server 2008 R2 [desktop apps | Windows Store apps] |
|
Header |
|
See also