Skip to content

Latest commit

 

History

History
106 lines (64 loc) · 2.86 KB

cd3dx12-pipeline-state-stream-rasterizer.md

File metadata and controls

106 lines (64 loc) · 2.86 KB
title description ms.assetid keywords topic_type api_name api_location api_type ms.topic ms.date
CD3DX12_PIPELINE_STATE_STREAM_RASTERIZER structure (D3dx12.h)
A helper structure used to describe a rasterizer description as a single object suitable for a stream description.
650C2DA3-63FB-44D1-BE9A-E21E13DA24DB
CD3DX12_PIPELINE_STATE_STREAM_RASTERIZER structure
apiref
CD3DX12_PIPELINE_STATE_STREAM_RASTERIZER
d3dx12.h
HeaderDef
reference
05/31/2018

CD3DX12_PIPELINE_STATE_STREAM_RASTERIZER structure

A helper structure used to describe a rasterizer description as a single object suitable for a stream description.

Syntax

struct CD3DX12_PIPELINE_STATE_STREAM_RASTERIZER {
                                           CD3DX12_PIPELINE_STATE_STREAM_RASTERIZER;
                                           CD3DX12_PIPELINE_STATE_STREAM_RASTERIZER(CD3DX12_RASTERIZER_DESC const &i);
  CD3DX12_PIPELINE_STATE_STREAM_RASTERIZER operator=(CD3DX12_RASTERIZER_DESC const& i);
                                           operator CD3DX12_RASTERIZER_DESC() const;
};

Members

CD3DX12_PIPELINE_STATE_STREAM_RASTERIZER

Creates a new, uninitialized, instance of a CD3DX12_PIPELINE_STATE_STREAM_RASTERIZER.

CD3DX12_PIPELINE_STATE_STREAM_RASTERIZER(CD3DX12_RASTERIZER_DESC const &i)

Creates a new instance of a CD3DX12_PIPELINE_STATE_STREAM_RASTERIZER, initialized with a subobject type of D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_RASTERIZER and subobject data copied from i, a CD3DX12_RASTERIZER_DESC structure.

operator=(CD3DX12_RASTERIZER_DESC const& i)

Copy-assignment operator.

operator CD3DX12_RASTERIZER_DESC() const

Implicit conversion to a CD3DX12_RASTERIZER_DESC structure.

Remarks

CD3DX12_PIPELINE_STATE_STREAM_RASTERIZER is a typedef specialization of the CD3DX12_PIPELINE_STATE_STREAM_SUBOBJECT template, and is defined as follows:

typedef CD3DX12_PIPELINE_STATE_STREAM_SUBOBJECT<CD3DX12_RASTERIZER_DESC, D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_RASTERIZER, CD3DX12_DEFAULT>
    CD3DX12_PIPELINE_STATE_STREAM_RASTERIZER;
          

Requirements

Requirement Value
Header
D3dx12.h

See also

Helper Structures for D3D12

CD3DX12_PIPELINE_STATE_STREAM_SUBOBJECT

D3D12_PIPELINE_STATE_SUBOBJECT_TYPE