Describes the coordinates of a tiled resource.
typedef struct D3D11_TILED_RESOURCE_COORDINATE {
UINT X;
UINT Y;
UINT Z;
UINT Subresource;
} D3D11_TILED_RESOURCE_COORDINATE;
X
The x position of a tiled resource. Used for buffer and 1D, 2D, and 3D textures.
Y
The y position of a tiled resource. Used for 2D and 3D textures.
Z
The z position of a tiled resource. Used for 3D textures.
Subresource
A subresource index value into mipmaps and arrays. Used for 1D, 2D, and 3D textures.
For mipmaps that use nonstandard tiling, or are packed, or both use nonstandard tiling and are packed, any subresource value that indicates any of the packed mipmaps all refer to the same tile.
This structure is passed into the following methods:
Header: Declared in d3d11_x.h (Desktop: d3d11_2.h).