DXGI_MODE_SCANLINE_ORDER enumeration
Flags indicating the method the raster uses to create an image on a surface.
Syntax
typedef enum DXGI_MODE_SCANLINE_ORDER { DXGI_MODE_SCANLINE_ORDER_UNSPECIFIED = 0, DXGI_MODE_SCANLINE_ORDER_PROGRESSIVE = 1, DXGI_MODE_SCANLINE_ORDER_UPPER_FIELD_FIRST = 2, DXGI_MODE_SCANLINE_ORDER_LOWER_FIELD_FIRST = 3 } DXGI_MODE_SCANLINE_ORDER;
Constants
- DXGI_MODE_SCANLINE_ORDER_UNSPECIFIED
-
Scanline order is unspecified.
- DXGI_MODE_SCANLINE_ORDER_PROGRESSIVE
-
The image is created from the first scanline to the last without skipping any.
- DXGI_MODE_SCANLINE_ORDER_UPPER_FIELD_FIRST
-
The image is created beginning with the upper field.
- DXGI_MODE_SCANLINE_ORDER_LOWER_FIELD_FIRST
-
The image is created beginning with the lower field.
Remarks
This enum is used by the DXGI_MODE_DESC1 and DXGI_SWAP_CHAIN_FULLSCREEN_DESC structures.
Requirements
|
Header |
|
|---|
See also
Show: