DirectX SDK

CONST_D3DCLIPPLANEFLAGS

The CONST_D3DCLIPPLANEFLAGS enumeration defines flags that can be combined and used with the D3DRENDERSTATE_CLIPPLANEENABLE render state.

Type CONST_D3DCLIPPLANEFLAGS
    D3DCPF_DISABLEALL = 0
    D3DCPF_ENABLEPLANE0 = 1
    '
    ' D3DCPF_ENABLEPLANE1 to D3DCPF_ENABLEPLANE30 ommitted here.
    ' 
    D3DCPF_ENABLEPLANE31 = -2147483648 
End Type
D3DCPF_DISABLEALL
Disable all clipping planes. This flag should not be combined with other flags.
D3DCPF_ENABLEPLANE0 through D3DCPF_ENABLEPLANE31
Enable the clipping plane, or planes, at the corresponding index. These values can be combined to simultaneously enable multiple clipping planes.

See Also

CONST_D3DRENDERSTATETYPE