CONST_D3DPMISCCAPSFLAGS
Defines general capabilities for a primitive.
Enum CONST_D3DPMISCCAPSFLAGS
    D3DPMISCCAPS_MASKZ                 =    2
    D3DPMISCCAPS_LINEPATTERNREP        =    4
    D3DPMISCCAPS_CULLNONE              =   16 (&H10)
    D3DPMISCCAPS_CULLCW                =   32 (&H20)
    D3DPMISCCAPS_CULLCCW               =   64 (&H40)
    D3DPMISCCAPS_COLORWRITEENABLE      =  128 (&H80)
    D3DPMISCCAPS_CLIPPLANESCALEDPOINTS =  256 (&H100)
    D3DPMISCCAPS_CLIPTLVERTS           =  512 (&H200)
    D3DPMISCCAPS_TSSARGTEMP            = 1024 (&H400)
    D3DPMISCCAPS_BLENDOP               = 2048 (&H800)
End Enum
Constants
- D3DPMISCCAPS_MASKZ
- The device can enable and disable modification of the depth buffer on pixel operations. 
- D3DPMISCCAPS_LINEPATTERNREP
- The driver can handle values other than 1 in the RepeatFactor member of the D3DLINEPATTERN type. (This applies only to line-drawing primitives.) 
- D3DPMISCCAPS_CULLNONE
- The driver does not perform triangle culling. This corresponds to the D3DCULL_NONE member of the CONST_D3DCULL enumeration. 
- D3DPMISCCAPS_CULLCW
- The driver supports clockwise triangle culling through the D3DRS_CULLMODE state. (This applies only to triangle primitives.) This corresponds to the D3DCULL_CW member of the CONST_D3DCULL enumeration. 
- D3DPMISCCAPS_CULLCCW
- The driver supports counterclockwise culling through the D3DRS_CULLMODE state. (This applies only to triangle primitives.) This corresponds to the D3DCULL_CCW member of the CONST_D3DCULL enumeration. 
- D3DPMISCCAPS_COLORWRITEENABLE
- The device supports per-channel writes for the render target color buffer through the D3DRS_COLORWRITEENABLE state.
- D3DPMISCCAPS_CLIPPLANESCALEDPOINTS
- Device correctly clips scaled points of size greater than 1.0 to user-defined clipping planes.
- D3DPMISCCAPS_CLIPTLVERTS
- Device clips post-transformed vertex primitives.
- D3DPMISCCAPS_TSSARGTEMP
- Device supports D3DTA_TEMP for temporary register.
- D3DPMISCCAPS_BLENDOP
- Device supports the alpha blending operations defined in the CONST_D3DBLENDOP enumerated type. 
Remarks
MiscCaps 
The values in this enumeration define the values for the PrimitveMiscCaps member of D3DCAPS8.
See Also
D3DCAPS8