Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Flags indicating the method the rasterizer uses to create an image on a surface.
Syntax
typedef enum D3DSCANLINEORDERING {
D3DSCANLINEORDERING_PROGRESSIVE = 1,
D3DSCANLINEORDERING_INTERLACED = 2
} D3DSCANLINEORDERING, *LPD3DSCANLINEORDERING;
Constants
-
D3DSCANLINEORDERING_PROGRESSIVE
-
The image is created from the first scanline to the last without skipping any.
-
D3DSCANLINEORDERING_INTERLACED
-
The image is created using the interlaced method in which odd-numbered lines are drawn on odd-numbered passes and even lines are drawn on even-numbered passes.
Remarks
This enumeration is used as a member in D3DDISPLAYMODEFILTER and D3DDISPLAYMODEEX.
Requirements
Requirement | Value |
---|---|
Header |
|
See also