CD3D11_RASTERIZER_DESC::CD3D11_RASTERIZER_DESC(constD3D11_RASTERIZER_DESC&) function (d3d11.h)

Instantiates a new instance of a CD3D11_RASTERIZER_DESC structure that is initialized with a D3D11_RASTERIZER_DESC structure.

Syntax

void CD3D11_RASTERIZER_DESC(
  const D3D11_RASTERIZER_DESC & o
);

Parameters

o

Address of the D3D11_RASTERIZER_DESC structure that initializes the D3D11_RASTERIZER_DESC structure.

Return value

None

Remarks

Here are the default rasterizer-state values for the members of D3D11_RASTERIZER_DESC:

FillMode = D3D11_FILL_SOLID;
        CullMode = D3D11_CULL_BACK;
        FrontCounterClockwise = FALSE;
        DepthBias = D3D11_DEFAULT_DEPTH_BIAS;
        DepthBiasClamp = D3D11_DEFAULT_DEPTH_BIAS_CLAMP;
        SlopeScaledDepthBias = D3D11_DEFAULT_SLOPE_SCALED_DEPTH_BIAS;
        DepthClipEnable = TRUE;
        ScissorEnable = FALSE;
        MultisampleEnable = FALSE;
        AntialiasedLineEnable = FALSE;

Requirements

Requirement Value
Minimum supported client Windows 7 [desktop apps | UWP apps]
Minimum supported server Windows Server 2008 R2 [desktop apps | UWP apps]
Target Platform Windows
Header d3d11.h
Library D3D11.lib

See also

CD3D11_RASTERIZER_DESC