Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

D3D11_FILL_MODE enumeration

Determines the fill mode to use when rendering triangles.

Syntax


typedef enum D3D11_FILL_MODE { 
  D3D11_FILL_WIREFRAME  = 2,
  D3D11_FILL_SOLID      = 3
} D3D11_FILL_MODE;

Constants

D3D11_FILL_WIREFRAME

Draw lines connecting the vertices. Adjacent vertices are not drawn.

D3D11_FILL_SOLID

Fill the triangles formed by the vertices. Adjacent vertices are not drawn.

Remarks

This enumeration is part of a rasterizer-state object description (see D3D11_RASTERIZER_DESC).

Requirements

Header

D3D11.h

See also

Core Enumerations

 

 

Show:
© 2017 Microsoft