Expand Minimize
This topic has not yet been rated - Rate this topic

DXGI_DDI_MODE_SCANLINE_ORDER enumeration

The DXGI_DDI_MODE_SCANLINE_ORDER enumeration type contains values that identify how scan lines are ordered in a display mode.

Syntax


typedef enum DXGI_DDI_MODE_SCANLINE_ORDER { 
  DXGI_DDI_MODE_SCANLINE_ORDER_UNSPECIFIED        = 0,
  DXGI_DDI_MODE_SCANLINE_ORDER_PROGRESSIVE        = 1,
  DXGI_DDI_MODE_SCANLINE_ORDER_UPPER_FIELD_FIRST  = 2,
  DXGI_DDI_MODE_SCANLINE_ORDER_LOWER_FIELD_FIRST  = 3
} DXGI_DDI_MODE_SCANLINE_ORDER;

Constants

DXGI_DDI_MODE_SCANLINE_ORDER_UNSPECIFIED

A DXGI_DDI_MODE_SCANLINE_ORDER-typed variable has not yet been assigned a meaningful value.

DXGI_DDI_MODE_SCANLINE_ORDER_PROGRESSIVE

Each field contains an entire frame.

DXGI_DDI_MODE_SCANLINE_ORDER_UPPER_FIELD_FIRST

Each field contains half of a frame, and the odd scan lines are displayed first.

DXGI_DDI_MODE_SCANLINE_ORDER_LOWER_FIELD_FIRST

Each field contains half of a frame, and the even scan lines are displayed first.

Remarks

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.

Requirements

Version

Available in Windows Vista and later versions of the Windows operating systems.

Header

Dxgiddi.h (include D3d10umddi.h)

See also

DXGI_DDI_MODE_DESC

 

 

Send comments about this topic to Microsoft

Build date: 11/29/2012

© 2013 Microsoft. All rights reserved.