Microsoft DirectX 8.1 (Visual Basic)

CONST_D3DFILLMODE

Defines constants that describe the fill mode.

Enum CONST_D3DFILLMODE
    D3DFILL_POINT     = 1
    D3DFILL_WIREFRAME = 2
    D3DFILL_SOLID     = 3
End Enum

Constants

D3DFILL_POINT
Fill points.
D3DFILL_WIREFRAME
Fill wireframes. This fill mode currently does not work for clipped primitives when you use the DrawPrimitive methods.
D3DFILL_SOLID
Fill solids.

Remarks

These flags are used to set the value of the D3DRS_FILLMODE render state for the CONST_D3DRENDERSTATETYPE enumeration.

See Also

CONST_D3DRENDERSTATETYPE