CD3D11_RASTERIZER_DESC1 structure (d3d11_1.h)
Syntax
struct CD3D11_RASTERIZER_DESC1 : D3D11_RASTERIZER_DESC1 {
void CD3D11_RASTERIZER_DESC1();
void CD3D11_RASTERIZER_DESC1(
const D3D11_RASTERIZER_DESC1 & o
);
void CD3D11_RASTERIZER_DESC1(
CD3D11_DEFAULT unnamedParam1
);
void CD3D11_RASTERIZER_DESC1(
D3D11_FILL_MODE fillMode,
D3D11_CULL_MODE cullMode,
BOOL frontCounterClockwise,
INT depthBias,
FLOAT depthBiasClamp,
FLOAT slopeScaledDepthBias,
BOOL depthClipEnable,
BOOL scissorEnable,
BOOL multisampleEnable,
BOOL antialiasedLineEnable,
UINT forcedSampleCount
);
void ~CD3D11_RASTERIZER_DESC1();
};
Inheritance
The CD3D11_RASTERIZER_DESC1 structure implements D3D11_RASTERIZER_DESC1.
Members
void CD3D11_RASTERIZER_DESC1()
void CD3D11_RASTERIZER_DESC1( const D3D11_RASTERIZER_DESC1 & o)
void CD3D11_RASTERIZER_DESC1( CD3D11_DEFAULT unnamedParam1)
void CD3D11_RASTERIZER_DESC1( D3D11_FILL_MODE fillMode, D3D11_CULL_MODE cullMode, BOOL frontCounterClockwise, INT depthBias, FLOAT depthBiasClamp, FLOAT slopeScaledDepthBias, BOOL depthClipEnable, BOOL scissorEnable, BOOL multisampleEnable, BOOL antialiasedLineEnable, UINT forcedSampleCount)
void ~CD3D11_RASTERIZER_DESC1()
Remarks
AntialiasedLineEnable
Type: BOOL
Specifies whether to enable line antialiasing; only applies if doing line drawing and MultisampleEnable is FALSE. For more info about this member, see Remarks.
CullMode
Type: D3D11_CULL_MODE
Indicates that triangles facing the specified direction are not drawn.
DepthBias
Type: INT
Depth value added to a given pixel. For info about depth bias, see Depth Bias.
DepthBiasClamp
Type: FLOAT
Maximum depth bias of a pixel. For info about depth bias, see Depth Bias.
DepthClipEnable
Type: BOOL
Specifies whether to enable clipping based on distance.
The hardware always performs x and y clipping of rasterized coordinates. When DepthClipEnable is set to the default–TRUE, the hardware also clips the z value (that is, the hardware performs the last step of the following algorithm).
0 < w
-w <= x <= w (or arbitrarily wider range if implementation uses a guard band to reduce clipping burden)
-w <= y <= w (or arbitrarily wider range if implementation uses a guard band to reduce clipping burden)
0 <= z <= w
When you set DepthClipEnable to FALSE, the hardware skips the z clipping (that is, the last step in the preceding algorithm). However, the hardware still performs the "0 < w" clipping. When z clipping is disabled, improper depth ordering at the pixel level might result. However, when z clipping is disabled, stencil shadow implementations are simplified. In other words, you can avoid complex special-case handling for geometry that goes beyond the back clipping plane.
FillMode
Type: D3D11_FILL_MODE
Determines the fill mode to use when rendering.
ForcedSampleCount
Type: UINT
The sample count that is forced while UAV rendering or rasterizing. Valid values are 0, 1, 2, 4, 8, and optionally 16. 0 indicates that the sample count is not forced.
- Don't bind depth-stencil views.
- Disable depth testing.
- Ensure the shader doesn't output depth.
- If you have any render-target views bound (D3D11_BIND_RENDER_TARGET) and ForcedSampleCount is greater than 1, ensure that every render target has only a single sample.
- Don't operate the shader at sample frequency. Therefore, ID3D11ShaderReflection::IsSampleFrequencyShader returns FALSE.
FrontCounterClockwise
Type: BOOL
Specifies whether a triangle is front- or back-facing. If TRUE, a triangle will be considered front-facing if its vertices are counter-clockwise on the render target and considered back-facing if they are clockwise. If FALSE, the opposite is true.
MultisampleEnable
Type: BOOL
Specifies whether to use the quadrilateral or alpha line anti-aliasing algorithm on multisample antialiasing (MSAA) render targets. Set to TRUE to use the quadrilateral line anti-aliasing algorithm and to FALSE to use the alpha line anti-aliasing algorithm. For more info about this member, see Remarks.
ScissorEnable
Type: BOOL
Specifies whether to enable scissor-rectangle culling. All pixels outside an active scissor rectangle are culled.
SlopeScaledDepthBias
Type: FLOAT
Scalar on a given pixel's slope. For info about depth bias, see Depth Bias.
Rasterizer state defines the behavior of the rasterizer stage. To create a rasterizer-state object, call ID3D11Device1::CreateRasterizerState1. To set rasterizer state, call ID3D11DeviceContext::RSSetState.
If you do not specify some rasterizer state, the Direct3D runtime uses the following default values for rasterizer state.
State | Default Value |
---|---|
FillMode | Solid |
CullMode | Back |
FrontCounterClockwise | FALSE |
DepthBias | 0 |
SlopeScaledDepthBias | 0.0f |
DepthBiasClamp | 0.0f |
DepthClipEnable | TRUE |
ScissorEnable | FALSE |
MultisampleEnable | FALSE |
AntialiasedLineEnable | FALSE |
ForcedSampleCount | 0 |
Line-rendering algorithm | MultisampleEnable | AntialiasedLineEnable |
---|---|---|
Aliased | FALSE | FALSE |
Alpha antialiased | FALSE | TRUE |
Quadrilateral | TRUE | FALSE |
Quadrilateral | TRUE | TRUE |
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows 8 and Platform Update for Windows 7 [desktop apps | UWP apps] |
Minimum supported server | Windows Server 2012 and Platform Update for Windows Server 2008 R2 [desktop apps | UWP apps] |
Header | d3d11_1.h |