CD3DX12_SUBRESOURCE_TILING structure

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

Syntax

struct CD3DX12_SUBRESOURCE_TILING  : public D3D12_SUBRESOURCE_TILING{
   CD3DX12_SUBRESOURCE_TILING();
   explicit CD3DX12_SUBRESOURCE_TILING(const D3D12_SUBRESOURCE_TILING &o);
   CD3DX12_SUBRESOURCE_TILING(UINT widthInTiles, UINT16 heightInTiles, UINT16 depthInTiles, UINT startTileIndexInOverallResource);
   operator const D3D12_SUBRESOURCE_TILING&() const;
};

Members

CD3DX12_SUBRESOURCE_TILING()

Creates a new, uninitialized, instance of a CD3DX12_SUBRESOURCE_TILING.

explicit CD3DX12_SUBRESOURCE_TILING(const D3D12_SUBRESOURCE_TILING &o)

Creates a new instance of a CD3DX12_SUBRESOURCE_TILING, initialized with the contents of another D3D12_SUBRESOURCE_TILING structure.

CD3DX12_SUBRESOURCE_TILING(UINT widthInTiles, UINT16 heightInTiles, UINT16 depthInTiles, UINT startTileIndexInOverallResource)

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

UINT widthInTiles

UINT16 heightInTiles

UINT16 depthInTiles

UINT startTileIndexInOverallResource

operator const D3D12_SUBRESOURCE_TILING&() const

Defines the & pass-by-reference operator for the parent structure type.

Requirements

Requirement Value
Header
D3dx12.h

See also

D3D12_SUBRESOURCE_TILING

Helper Structures for D3D12