// dxgiddi.h
typedef struct DXGI_DDI_MODE_DESC {
[out] UINT Width;
[out] UINT Height;
[out] DXGI_FORMAT Format;
[out] DXGI_DDI_RATIONAL RefreshRate;
[out] DXGI_DDI_MODE_SCANLINE_ORDER ScanlineOrdering;
[out] DXGI_DDI_MODE_ROTATION Rotation;
[out] DXGI_DDI_MODE_SCALING Scaling;
} DXGI_DDI_MODE_DESC;
View the official Windows Driver Kit DDI referenceNo description available.
The DXGI_DDI_MODE_DESC structure describes a display mode.
Width [out]The screen width of the display mode, in pixels.
Height [out]The screen height of the display mode, in pixels.
Format [out]A DXGI_FORMAT-typed value that indicates the pixel format of the display mode.
RefreshRate [out]A DXGI_DDI_RATIONAL structure that indicates the refresh rate of the display mode.
ScanlineOrdering [out]A DXGI_DDI_MODE_SCANLINE_ORDER-typed value that indicates how scan lines are ordered in the display mode.
Rotation [out]A DXGI_DDI_MODE_ROTATION-typed value that identifies the orientation of the display mode.
Scaling [out]A DXGI_DDI_MODE_SCALING-typed value that identifies the scaling of the display mode.