D3DFILLMODE
This enumeration defines constants describing the fill mode.
typedef enum _D3DFILLMODE {
D3DFILL_POINT = 1,
D3DFILL_WIREFRAME = 2,
D3DFILL_SOLID = 3,
D3DFILL_FORCE_DWORD = 0x7fffffff
} D3DFILLMODE;
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. - D3DFILL_FORCE_DWORD
Forces this enumeration to compile to 32 bits in size. This value is not used.
Remarks
The values in this enumerated type are used by the D3DRS_FILLMODE render state.
Requirements
OS Versions: Windows CE .NET 4.0 and later.
Header: D3d8types.h.
See Also
Last updated on Thursday, April 08, 2004
© 1992-2003 Microsoft Corporation. All rights reserved.