CD3DX12_ROOT_DESCRIPTOR_TABLE 结构

一个帮助程序结构,用于轻松初始化 D3D12_ROOT_DESCRIPTOR_TABLE 结构。

语法

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);
};

成员

CD3DX12_ROOT_DESCRIPTOR_TABLE ()

创建CD3DX12_ROOT_DESCRIPTOR_TABLE的未初始化的新实例。

explicit CD3DX12_ROOT_DESCRIPTOR_TABLE (const D3D12_ROOT_DESCRIPTOR_TABLE &o)

创建CD3DX12_ROOT_DESCRIPTOR_TABLE的新实例,该实例使用另一个 D3D12_ROOT_DESCRIPTOR_TABLE 结构的内容进行初始化。

CD3DX12_ROOT_DESCRIPTOR_TABLE (UINT numDescriptorRanges,const D3D12_DESCRIPTOR_RANGE* _pDescriptorRanges)

创建CD3DX12_ROOT_DESCRIPTOR_TABLE的新实例,初始化以下参数:

UINT numDescriptorRanges

D3D12_DESCRIPTOR_RANGE* _pDescriptorRanges

inline Init (UINT numDescriptorRanges, const D3D12_DESCRIPTOR_RANGE* _pDescriptorRanges)

指定初始化以下参数的函数:

UINT numDescriptorRanges

D3D12_DESCRIPTOR_RANGE* _pDescriptorRanges

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

指定初始化以下参数的函数:

& D3D12_ROOT_DESCRIPTOR_TABLErootDescriptorTable

UINT numDescriptorRanges

D3D12_DESCRIPTOR_RANGE* _pDescriptorRanges

要求

要求
标头
D3dx12.h

另请参阅

D3D12_ROOT_DESCRIPTOR_TABLE

D3D12 的帮助程序结构