ID3D11DeviceContext::RSGetState method (d3d11.h)

Get the rasterizer state from the rasterizer stage of the pipeline.

Syntax

void RSGetState(
  [out] ID3D11RasterizerState **ppRasterizerState
);

Parameters

[out] ppRasterizerState

Type: ID3D11RasterizerState**

Address of a pointer to a rasterizer-state interface (see ID3D11RasterizerState) to fill with information from the device.

Return value

None

Remarks

Any returned interfaces will have their reference count incremented by one. Applications should call IUnknown::Release on the returned interfaces when they are no longer needed to avoid memory leaks.

Requirements

Requirement Value
Target Platform Windows
Header d3d11.h
Library D3D11.lib

See also

ID3D11DeviceContext