Flags indicating the method the raster uses to create an image on a surface.
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;
| Constant | Description |
|---|---|
| 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. |
Header: Declared in d3d11_x.h (dxgitype.h on other Windows platforms).