CD3DX12_ROOT_DESCRIPTOR_TABLE structure

A helper structure to enable easy initialization of a D3D12_ROOT_DESCRIPTOR_TABLE structure.

Syntax

struct CD3DX12_ROOT_DESCRIPTOR_TABLE  : public D3D12_ROOT_DESCRIPTOR_TABLE{
       CD3DX12_ROOT_DESCRIPTOR_TABLE();
       explicit CD3DX12_ROOT_DESCRIPTOR_TABLE(const D3D12_ROOT_DESCRIPTOR_TABLE &o);
       CD3DX12_ROOT_DESCRIPTOR_TABLE(UINT numDescriptorRanges, const D3D12_DESCRIPTOR_RANGE* _pDescriptorRanges);
  void inline Init(UINT numDescriptorRanges, const D3D12_DESCRIPTOR_RANGE* _pDescriptorRanges);
  void static inline Init(D3D12_ROOT_DESCRIPTOR_TABLE &rootDescriptorTable, UINT numDescriptorRanges, const D3D12_DESCRIPTOR_RANGE* _pDescriptorRanges);
};

Members

CD3DX12_ROOT_DESCRIPTOR_TABLE()

Creates a new, uninitialized, instance of a CD3DX12_ROOT_DESCRIPTOR_TABLE.

explicit CD3DX12_ROOT_DESCRIPTOR_TABLE(const D3D12_ROOT_DESCRIPTOR_TABLE &o)

Creates a new instance of a CD3DX12_ROOT_DESCRIPTOR_TABLE, initialized with the contents of another D3D12_ROOT_DESCRIPTOR_TABLE structure.

CD3DX12_ROOT_DESCRIPTOR_TABLE(UINT numDescriptorRanges, const D3D12_DESCRIPTOR_RANGE* _pDescriptorRanges)

Creates a new instance of a CD3DX12_ROOT_DESCRIPTOR_TABLE, initializing the following parameters:

UINT numDescriptorRanges

D3D12_DESCRIPTOR_RANGE* _pDescriptorRanges

inline Init(UINT numDescriptorRanges, const D3D12_DESCRIPTOR_RANGE* _pDescriptorRanges)

Specifies a function that initializes the following parameters:

UINT numDescriptorRanges

D3D12_DESCRIPTOR_RANGE* _pDescriptorRanges

static inline Init(D3D12_ROOT_DESCRIPTOR_TABLE &rootDescriptorTable, UINT numDescriptorRanges, const D3D12_DESCRIPTOR_RANGE* _pDescriptorRanges)

Specifies a function that initializes the following parameters:

D3D12_ROOT_DESCRIPTOR_TABLE &rootDescriptorTable

UINT numDescriptorRanges

D3D12_DESCRIPTOR_RANGE* _pDescriptorRanges

Requirements

Requirement Value
Header
D3dx12.h

See also

D3D12_ROOT_DESCRIPTOR_TABLE

Helper Structures for D3D12