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.

Requirements

Header: Declared in dxgi1_2.h.