ID3D10Device::RSGetState method (d3d10.h)

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

Syntax

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

Parameters

[out] ppRasterizerState

Type: ID3D10RasterizerState**

Address of a pointer to a rasterizer-state interface (see ID3D10RasterizerState) 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 d3d10.h
Library D3D10.lib

See also

ID3D10Device Interface