Microsoft DirectX 8.1 (Visual Basic)

CONST_D3DCULL

Defines the supported culling modes.

Enum CONST_D3DCULL
    D3DCULL_NONE = 1
    D3DCULL_CW   = 2
    D3DCULL_CCW  = 3
End Enum

Constants

D3DCULL_NONE
Do not cull back faces.
D3DCULL_CW
Cull back faces with clockwise vertices.
D3DCULL_CCW
Cull back faces with counterclockwise vertices.

Remarks

The values in this enumerated type are used to set the value of the D3DRS_CULLMODE render state for the CONST_D3DRENDERSTATETYPE enumeration.

The culling modes define how back faces are culled when rendering a geometry.

See Also

D3DCAPS8, CONST_D3DRENDERSTATETYPE