// dxgiddi.h
typedef enum DXGI_DDI_MODE_SCANLINE_ORDER {
DXGI_DDI_MODE_SCANLINE_ORDER_UNSPECIFIED,
DXGI_DDI_MODE_SCANLINE_ORDER_PROGRESSIVE,
DXGI_DDI_MODE_SCANLINE_ORDER_UPPER_FIELD_FIRST,
DXGI_DDI_MODE_SCANLINE_ORDER_LOWER_FIELD_FIRST
} ;
View the official Windows Driver Kit DDI referenceNo description available.
The DXGI_DDI_MODE_SCANLINE_ORDER enumeration type contains values that identify how scan lines are ordered in a display mode.
DXGI_DDI_MODE_SCANLINE_ORDER_UNSPECIFIEDA DXGI_DDI_MODE_SCANLINE_ORDER-typed variable has not yet been assigned a meaningful value.
DXGI_DDI_MODE_SCANLINE_ORDER_PROGRESSIVEEach field contains an entire frame.
DXGI_DDI_MODE_SCANLINE_ORDER_UPPER_FIELD_FIRSTEach field contains half of a frame, and the odd scan lines are displayed first.
DXGI_DDI_MODE_SCANLINE_ORDER_LOWER_FIELD_FIRSTEach field contains half of a frame, and the even scan lines are displayed first.
The values of the DXGI_DDI_MODE_SCANLINE_ORDER enumeration type indicate whether the image that is displayed on the monitor contains the entire content of a video frame or only half of the content (that is, either the even or odd scan lines, which occur interchangeably). The values also indicate which field comes first in the order.