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.
D3DSCANLINEORDERING
Flags indicating the method the raster uses to create an image on a surface.
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.